]> git.donarmstrong.com Git - roundcube.git/blob - debian/conf/apache.conf
New upstream version !
[roundcube.git] / debian / conf / apache.conf
1 # Uncomment this to use tinymce (you need tinymce package)
2 # See README.Debian for more details
3
4 # Alias /roundcube/program/js/tiny_mce/ /usr/share/tinymce/www/
5 # <Directory "/usr/share/tinymce/www/">
6 #      Options Indexes MultiViews FollowSymLinks
7 #      AllowOverride None
8 #      Order allow,deny
9 #      allow from all
10 # </Directory>
11
12 # This alias does not work properly with several hosts on your apache server
13 # Uncomment it to use it
14 #    Alias /roundcube /var/lib/roundcube
15
16 <Directory /var/lib/roundcube/>
17         Options +FollowSymLinks
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