source: npl/webapps/Trac/trac.conf

Last change on this file was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100644
File size: 764 bytes
Line 
1#Syn-3 trac server configuration
2#DONT EDIT THIS FILE. IT WILL BE OVERWRITTEN BY UPDATES!
3
4LoadModule wsgi_module lib/apache2/mod_wsgi.so
5WSGIScriptAlias /syn3/trac /usr/share/trac/cgi-bin/trac.wsgi
6
7<Directory /usr/share/trac/cgi-bin>
8    WSGIApplicationGroup %{GLOBAL}
9    Order deny,allow
10    Allow from all
11</Directory>
12
13
14LoadModule authnz_ldap_module /usr/lib/apache2/mod_authnz_ldap.so
15<Location /syn3/trac>
16    #Authentication settings
17    AuthBasicProvider ldap
18    AuthType Basic
19    AuthName "Syn-3 Trac environment"
20
21    #LDAP settings
22    AuthLDAPURL "ldap://ldap-master:389 ldap-slave:389/ou=Users,dc=syn-3"
23    AuthLDAPGroupAttributeIsDN off
24    AuthLDAPGroupAttribute memberUid
25
26    Require ldap-group cn=Trac access,ou=Groups,dc=syn-3
27
28</Location>
Note: See TracBrowser for help on using the repository browser.