Difference between revisions of "Basic redmine configuration"
From Notes_Wiki
(Created page with "<yambe:breadcrumb>Redmine_configuration|Redmine configuration</yambe:breadcrumb> =Basic redmine configuration= ==Disable anonymous access== By default all redmine projects a...") |
m |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
[[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[Web based tools or applications]] > [[Redmine configuration]] > [[Basic redmine configuration]] | |||
Line 9: | Line 8: | ||
#Check "Authentication required" checkbox | #Check "Authentication required" checkbox | ||
#Click save | #Click save | ||
==Configure outgong emails== | |||
#Configure sendmail on the machine so that it can send emails. | |||
#'<tt>cp {REDMINE_ROOT}/config/configuration.yml.example {REDMINE_ROOT}/config/configuration.yml</tt>' | |||
#Edit the config/configuration.yml file and near the end where production: is present use: | |||
#:<pre> | |||
#::production: | |||
#:: email_delivery: | |||
#:: delivery_method: :sendmail | |||
#:</pre> | |||
#Login as administrator in redmine and go to "Administration -> Settings -> Email notifications" and choose appropriate defaults. | |||
==Configure LdapAuthentication== | |||
Refer to http://www.redmine.org/projects/redmine/wiki/RedmineLDAP Example configuration is: | |||
<pre> | |||
Name = ldap.sbarjatiya.com | |||
Host = ldap.sbarjatiya.com | |||
Port = 389 | |||
LDAPS = no | |||
Account = ;leave blank if anonymous access is allowed, else enter dn | |||
Password = ;password for above account if anonymous access is not allowed | |||
Base DN = dc=sbarjatiya,dc=com | |||
On-the-fly user creation = yes | |||
Attributes | |||
Login = uid | |||
Firstname = gn | |||
Lastname = sn | |||
Email = mail | |||
</pre> | |||
Note in case of LDAPS redmine accepts self-signed certificates of LDAPS server without any problem. | |||
[[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[Web based tools or applications]] > [[Redmine configuration]] > [[Basic redmine configuration]] |
Latest revision as of 18:36, 28 July 2022
Home > CentOS > CentOS 6.x > Web based tools or applications > Redmine configuration > Basic redmine configuration
Disable anonymous access
By default all redmine projects and issues are public and viewable by everyone. To disable this:
- Login as administrator
- Go to Adminsitration -> Settings -> Authentication
- Check "Authentication required" checkbox
- Click save
Configure outgong emails
- Configure sendmail on the machine so that it can send emails.
- 'cp {REDMINE_ROOT}/config/configuration.yml.example {REDMINE_ROOT}/config/configuration.yml'
- Edit the config/configuration.yml file and near the end where production: is present use:
- production:
- email_delivery:
- delivery_method: :sendmail
- Login as administrator in redmine and go to "Administration -> Settings -> Email notifications" and choose appropriate defaults.
Configure LdapAuthentication
Refer to http://www.redmine.org/projects/redmine/wiki/RedmineLDAP Example configuration is:
Name = ldap.sbarjatiya.com Host = ldap.sbarjatiya.com Port = 389 LDAPS = no Account = ;leave blank if anonymous access is allowed, else enter dn Password = ;password for above account if anonymous access is not allowed Base DN = dc=sbarjatiya,dc=com On-the-fly user creation = yes Attributes Login = uid Firstname = gn Lastname = sn Email = mail
Note in case of LDAPS redmine accepts self-signed certificates of LDAPS server without any problem.
Home > CentOS > CentOS 6.x > Web based tools or applications > Redmine configuration > Basic redmine configuration