#==================================================================== # Apache configuration for LemonLDAP::NG Manager #==================================================================== # Uncomment this if no previous NameVirtualHost declaration #NameVirtualHost __VHOSTLISTEN__ # To insert LLNG user id in Apache logs, declare this format and use it in # CustomLog directive #LogFormat "%v:%p %h %l %{Lm-Remote-User}o %t \"%r\" %>s %O %{Lm-Remote-Custom}o" llng # Manager virtual host (manager.__DNSDOMAIN__) ServerName manager-api.__DNSDOMAIN__ LogLevel notice # See above to set LLNG user id in Apache logs #CustomLog __APACHELOGDIR__/manager-api.log llng #ErrorLog __APACHELOGDIR__/lm_err.log # Uncomment this if you are running behind a reverse proxy and want # LemonLDAP::NG to see the real IP address of the end user # Adjust the settings to match the IP address of your reverse proxy # and the header containing the original IP address # #RemoteIPHeader X-Forwarded-For #RemoteIPInternalProxy 127.0.0.1 # FASTCGI CONFIGURATION # --------------------- # 1) URI management RewriteEngine on # 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_URI}" "!\.html(?:/.*)?$" # REST URLs RewriteCond "%{REQUEST_URI}" "!^/(?:doc)" RewriteRule "^/(.+)$" "/api.fcgi/$1" [PT] # 2) FastCGI engine # You can choose any FastCGI system. Here is an example using mod_fcgid # mod_fcgid configuration FcgidMaxRequestLen 2000000 SetHandler fcgid-script Options +ExecCGI header unset Lm-Remote-User # If you want to use mod_fastcgi, replace lines below by: #FastCgiServer __MANAGERAPIDIR__/manager.fcgi # GLOBAL CONFIGURATION # -------------------- DocumentRoot __MANAGERAPIDIR__ # By default, access to this VHost is denied # If you want to enable the manager APIs, you MUST # implement a robust authentication scheme to protect this # VHost since LemonLDAP::NG provides no protection to the # Manager APIs yet Order Deny,Allow Deny 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 # On-line documentation Alias /doc/ __DEFDOCDIR__ Order allow,deny Allow from all ErrorDocument 404 /notfound.html Options +FollowSymLinks DirectoryIndex index.html start.html # Uncomment this if site if you use SSL only #Header set Strict-Transport-Security "max-age=15768000"