debmaker/ressources/glpi/rootfs/apache2-glpi.conf
2023-06-12 10:55:41 +02:00

15 lines
391 B
Text

<VirtualHost *:80>
ServerName glpi.domaine.com
DocumentRoot /usr/share/glpi/public
<directory /usr/share/glpi/public>
Options FollowSymLinks
AllowOverride all
Require all granted
RewriteEngine On
# Redirect all requests to GLPI router, unless file exists.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
</directory>
</VirtualHost>