An open API service indexing awesome lists of open source software.

https://github.com/s3rvac/redmine_pwauth

Adds the pwauth authentication to Redmine.
https://github.com/s3rvac/redmine_pwauth

authentication pwauth redmine ruby

Last synced: 9 months ago
JSON representation

Adds the pwauth authentication to Redmine.

Awesome Lists containing this project

README

          

= Redmine pwauth plugin

Adds the +pwauth+ authentication to {Redmine}[https://www.redmine.org/].

== Requirements

The plugin requires {pwauth}[https://github.com/phokz/pwauth] to be installed,
configured, and available in +PATH+, i.e. the user under which Redmine is run
can execute +pwauth+ without specifying a full path to this program.

The plugin was tested under Redmine versions 2.3 through 2.6.

== Installation

Before installing, make sure to stop Redmine. Then, perform the following
steps:

1. cd [redmine-install-dir]
2. git clone https://github.com/s3rvac/redmine_pwauth.git plugins/redmine_pwauth
3. RAILS_ENV=production rake redmine:plugins:migrate

After that, you can start Redmine and set the +pwauth+ authentication method
for the users of your choice (visit Administration > Users).

== Uninstallation

First, disable the +pwauth+ method for all users (visit Administration >
Users
), and stop Redmine. Then, perform the following steps:

1. cd [redmine-install-dir]
2. RAILS_ENV=production rake redmine:plugins:migrate NAME=redmine_pwauth VERSION=0
3. rm -rf plugins/redmine_pwauth

After that, you can start Redmine.