#==================================================================== # Apache configuration for LemonLDAP::NG Manager #==================================================================== # Uncomment this if no previous NameVirtualHost declaration #NameVirtualHost __VHOSTLISTEN__ # Manager virtual host (manager.__DNSDOMAIN__) ServerName manager.__DNSDOMAIN__ LogLevel notice #ErrorLog ${APACHE_LOG_DIR}/lm_err.log #CustomLog ${APACHE_LOG_DIR}/lm.log combined # FASTCGI CONFIGURATION # --------------------- # 1) URI management RewriteEngine on RewriteRule "^/$" "/psgi/manager-server.fcgi" [PT] # For performances, you can delete the previous RewriteRule line after # puttings html files: simply put the HTML results of differents modules # (configuration, sessions, notifications) as manager.html, sessions.html, # notifications.html and uncomment the 2 following lines: # DirectoryIndex manager.html # RewriteCond "%{REQUEST_FILENAME}" "!\.html$" # REST URLs RewriteCond "%{REQUEST_FILENAME}" "!^/(?:static|doc|fr-doc|lib).*" RewriteRule "^/(.+)$" "/psgi/manager-server.fcgi/$1" [PT] Alias /psgi/ __MANAGERPSGIDIR__ # 2) FastCGI engine # You can choose any FastCGI system. Here is an example using mod_fcgid # mod_fcgid configuration SetHandler fcgid-script Options +ExecCGI # If you want to use mod_fastcgi, replace lines below by: #FastCgiServer __MANAGERPSGIDIR__manager-server.fcgi # Or if you prefer to use CGI, use /psgi/manager-server.cgi instead of # /psgi/manager-server.fcgi and adapt the rewrite rules. # GLOBAL CONFIGURATION # -------------------- DocumentRoot __MANAGERDIR__ Order Deny,Allow Allow from all AddOutputFilterByType DEFLATE text/html text/plain text/xml text/javascript text/css SetOutputFilter DEFLATE BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSIE !no-gzip !gzip-only-text/html SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary Header append Vary User-Agent env=!dont-vary # Static files (javascripts, HTML forms,...) Order deny,allow Allow from all Options +FollowSymLinks # On-line documentation Alias /doc/ __DEFDOCDIR__ Alias /lib/ __DEFDOCDIR__lib/ Order allow,deny Allow from all ErrorDocument 404 /notfound.html Options +FollowSymLinks # French version (needs fr-doc installation) Alias /fr-doc/ __FRDOCDIR__ Order deny,allow Allow from all ErrorDocument 404 /notfoundfr.html Options +FollowSymLinks