mirror of
https://abf.rosa.ru/djam/glpi.git
synced 2025-02-23 21:42:54 +00:00
46 lines
878 B
Text
46 lines
878 B
Text
Alias /glpi /usr/share/glpi
|
|
|
|
<Directory /usr/share/glpi>
|
|
Options None
|
|
AllowOverride Limit Options FileInfo
|
|
|
|
php_value memory_limit 64M
|
|
|
|
Order Deny,Allow
|
|
Allow from all
|
|
</Directory>
|
|
|
|
<Directory /usr/share/glpi/install>
|
|
|
|
# migration could be very long
|
|
php_value max_execution_time 0
|
|
php_value memory_limit -1
|
|
|
|
</Directory>
|
|
|
|
<Directory /usr/share/glpi/config>
|
|
Order Allow,Deny
|
|
Deny from all
|
|
</Directory>
|
|
|
|
<Directory /usr/share/glpi/locales>
|
|
Order Allow,Deny
|
|
Deny from all
|
|
</Directory>
|
|
|
|
<Directory /usr/share/glpi/install/mysql>
|
|
Order Allow,Deny
|
|
Deny from all
|
|
</Directory>
|
|
|
|
<Directory /usr/share/glpi/scripts>
|
|
Order Allow,Deny
|
|
Deny from all
|
|
</Directory>
|
|
|
|
# some people prefer a simple URL like http://glpi.example.com
|
|
#<VirtualHost *:80>
|
|
# DocumentRoot /usr/share/glpi
|
|
# ServerName glpi.example.com
|
|
#</VirtualHost>
|
|
|