]> git.donarmstrong.com Git - roundcube.git/blob - debian/conf/apache.conf
0ab1eb3175398d5e7e5936a9f87118fa5690d71c
[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/tinymce2/www/
4 #    Alias /roundcube /var/lib/roundcube
5
6 # Access to tinymce2 files
7 <Directory "/usr/share/tinymce2/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         AllowOverride All
17         order allow,deny
18         allow from all
19 </Directory>
20
21 # Protecting basic directories:
22 <Directory /var/lib/roundcube/config>
23         Options -FollowSymLinks
24         AllowOverride None
25 </Directory>
26
27 <Directory /var/lib/roundcube/temp>
28         Options -FollowSymLinks
29         AllowOverride None
30         Order allow,deny
31         Deny from all
32 </Directory>
33
34 <Directory /var/lib/roundcube/logs>
35         Options -FollowSymLinks
36         AllowOverride None
37         Order allow,deny
38         Deny from all
39 </Directory>
40