Alias /icingaweb2 "/usr/share/icingaweb2/public" # forwarding PHP requests to FPM ProxyPassMatch "fcgi://127.0.0.1:9000/usr/share/icingaweb2/public/$1" # Apache 2.4 ProxyErrorOverride on ErrorDocument 503 /icingaweb2/error_unavailable.html Options SymLinksIfOwnerMatch AllowOverride None DirectoryIndex index.php # Apache 2.4 Require all granted # Apache 2.2 Order allow,deny Allow from all SetEnv ICINGAWEB_CONFIGDIR "/etc/icingaweb2" EnableSendfile Off RewriteEngine on RewriteBase /icingaweb2/ RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] RewriteRule ^.*$ index.php [NC,L] DirectoryIndex error_norewrite.html ErrorDocument 404 /error_norewrite.html # forwarding PHP requests to FPM SetHandler "proxy:fcgi://127.0.0.1:9000" ErrorDocument 503 /icingaweb2/error_unavailable.html