- Added the configuration hook for the Debian apache package.

This commit is contained in:
ldw 2002-07-22 07:27:35 +00:00
parent 8d0022dc6b
commit d5e2b08335

20
debian/etc/apache.conf vendored Normal file
View File

@ -0,0 +1,20 @@
Alias /phpgroupware /usr/share/phpgroupware
<Directory /usr/share/phpgroupware/>
Options +FollowSymLinks
AllowOverride None
order allow,deny
allow from all
DirectoryIndex index.html index.php
<IfModule mod_php3.c>
php3_magic_quotes_gpc On
php3_track_vars On
php3_include_path .:/etc/phpgroupware
</IfModule>
<IfModule mod_php4.c>
php_flag magic_quotes_gpc On
php_flag track_vars On
php_flag session.save_path /var/tmp/phpgroupware
php_value include_path .:/etc/phpgroupware
</IfModule>
</Directory>