]> git.donarmstrong.com Git - roundcube.git/blob - debian/conf/apache.conf
Imported Debian patch 0.5.2+dfsg-1
[roundcube.git] / debian / conf / apache.conf
1 # Those aliases do not work properly with several hosts on your apache server
2 # Uncomment them to use it or adapt them to your configuration
3 #    Alias /roundcube/program/js/tiny_mce/ /usr/share/tinymce/www/
4 #    Alias /roundcube /var/lib/roundcube
5
6 # Access to tinymce files
7 <Directory "/usr/share/tinymce/www/">
8       Options Indexes MultiViews FollowSymLinks
9       AllowOverride None
10       Order allow,deny
11       allow from all
12 </Directory>
13
14 <Directory /var/lib/roundcube/>
15   Options +FollowSymLinks
16   # This is needed to parse /var/lib/roundcube/.htaccess. See its
17   # content before setting AllowOverride to None.
18   AllowOverride All
19   order allow,deny
20   allow from all
21 </Directory>
22
23 # Protecting basic directories:
24 <Directory /var/lib/roundcube/config>
25         Options -FollowSymLinks
26         AllowOverride None
27 </Directory>
28
29 <Directory /var/lib/roundcube/temp>
30         Options -FollowSymLinks
31         AllowOverride None
32         Order allow,deny
33         Deny from all
34 </Directory>
35
36 <Directory /var/lib/roundcube/logs>
37         Options -FollowSymLinks
38         AllowOverride None
39         Order allow,deny
40         Deny from all
41 </Directory>
42