icingaweb2/packages/files/icingaweb-apache2.conf
Thomas Gelf 6e6df999dd packaging: build debian packages
Simple example configuration, quick & dirty but functional. Didn't
care about a config, as that will be handled by the setup wizard.

refs #6402
2014-06-05 02:53:47 +00:00

20 lines
470 B
Plaintext

Alias /icingaweb "/usr/share/icingaweb/public"
<Directory "/usr/share/icingaweb/public">
Options SymLinksIfOwnerMatch
AllowOverride None
Order allow,deny
Allow from all
# SetEnv ICINGAWEB_CONFIGDIR /etc/icingaweb
RewriteEngine on
RewriteBase /icingaweb/
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
</Directory>