Plugins Directory » Redmine digest auth plugin
|
|
Author: | Minoru Maeda |
|---|---|---|
| Website: | https://github.com/matsukei/redmine_digest_auth | |
| Code repository: | https://github.com/matsukei/redmine_digest_auth.git | |
| Registered on: | 2017-06-02 (over 8 years ago) | |
| Current version: | 1.0.0 | |
| Compatible with: | Redmine 3.3.x, 3.2.x | |
| User ratings: |
It is a plugin that provides digest authentication to Redmine.
Usage¶
- Administrator > Plugins > Configure > checked
Enable Digest Authenticationand input digest auth settings. - If you want to encrypt the password you entered, register
database_cipher_keyinyour_redmine_path/config/configuration.yml.- When registering or changing
database_cipher_key, please do after uncheckingEnable Digest Authenticationin digest authentication setting. Please enter the password again afterwards. - If you are already registering SCM or LDAP password, please carefully read the notes in
your_redmine_path/config/configuration.yml, such as by runningrake db:encrypt RAILS_ENV=production.
- When registering or changing
- As a last resort, you can reset digest authentication settings with the following command:
$ cd your_redmine_path $ bundle exec rails console -e production > record = Setting.where(name: 'plugin_redmine_digest_auth').first > record.destroy > exit
Then restart the web service.
Screenshot¶
Administrator > Plugins > Configure
You can change Digest authentication settings without restarting the web service.

Not improved¶
- Re-authentication interval: 5 minutes
- If you do not operate anything, you will be asked again in about 5 minutes after authentication.
- There are exceptions where digest authentication is not required. It is a static file URL directly under the public folder and a URL with no routing definitions.
- For implementation via before_action, static files can be referenced.
Changelog
1.0.0 (2017-06-02)
Compatible with Redmine 3.3.x, 3.2.x.