]> git.donarmstrong.com Git - roundcube.git/blob - debian/conf/apache.conf
Imported Debian patch 0.1~beta2.2~dfsg-1
[roundcube.git] / debian / conf / apache.conf
1 # This alias does not work properly with several hosts on your apache server
2 # Uncomment it to use it
3 #    Alias /roundcube /var/lib/roundcube
4
5 <Directory /var/lib/roundcube/>
6         Options +FollowSymLinks
7         AllowOverride All
8         order allow,deny
9         allow from all
10 </Directory>
11
12 # Protecting basic directories:
13 <Directory /var/lib/roundcube/config>
14         Options -FollowSymLinks
15         AllowOverride None
16 </Directory>
17
18 <Directory /var/lib/roundcube/temp>
19         Options -FollowSymLinks
20         AllowOverride None
21         Order allow,deny
22         Deny from all
23 </Directory>
24
25