File: apache.conf

package info (click to toggle)
horde2 2.2.8-1sarge3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,832 kB
  • ctags: 2,897
  • sloc: php: 12,784; sh: 954; sql: 149; makefile: 104; perl: 97; xml: 24; pascal: 6
file content (24 lines) | stat: -rw-r--r-- 738 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Added for HORDE2
Alias /horde2 /usr/share/horde2

<Directory /usr/share/horde2>
Options FollowSymLinks
AllowOverride Limit
order allow,deny       
allow from all
<IfModule mod_php4.c>
  php_flag magic_quotes_gpc Off
  php_flag track_vars On
  php_value session.save_path "/var/lib/horde2"
  php_value include_path .:/etc/horde2:/usr/share/php:/usr/share/pear:/usr/share/horde2
  php_flag session.use_trans_sid Off
</IfModule>
<IfModule mod_php5.c>
  php_flag magic_quotes_gpc Off
  php_flag track_vars On
  php_value session.save_path "/var/lib/horde2"
  php_value include_path .:/etc/horde2:/usr/share/php:/usr/share/pear:/usr/share/horde2
  php_flag session.use_trans_sid Off
</IfModule>
</Directory>
# End HORDE2 Configuration Block