Posts

Showing posts with the label apache

Install redmine on ubuntu server 12.04 (also work for 13.04)

This is a configuration for a redmine only server. Prerequisites: LAMP installed Install redmine: apt-get install redmine redmine-mysql libapache2-mod-passenger Create the file /etc/apache2/sites-available/redmine and write: <virtualhost *:80>    DocumentRoot /usr/share/redmine/public    PassengerResolveSymlinksInDocumentRoot on </virtualhost> Set the redmine site as the only site: a2dissite 000-default a2ensite redmine Reload apache : service apache2 reload You should be able to access redmine on the following address: http://yourserver_ip_or_name/ #1 #2

Browse entire Active Directory catalog from apache/svn

If you want subversion to be able to browse your entire Active Directory catalog, you have to use the port 3268 (globalcatLDAP) instead of the 389 in your apache configuration: AuthLDAPURL "ldap://youradserver:3268/DC=yourdomain,DC=local?sAMAccountName?sub?(objectClass=*)" #1 #2