]> git.donarmstrong.com Git - roundcube.git/blobdiff - debian/conf/apache.conf
Imported Debian patch 0.5.2+dfsg-1
[roundcube.git] / debian / conf / apache.conf
index b4447d47866d39b7bc7b7dd9f720de12eb900740..f4befee5512ec542e394d860f2b216991d9882e7 100644 (file)
@@ -1,12 +1,23 @@
-# This alias does not work properly with several hosts on your apache server
-# Uncomment it to use it
+# Those aliases do not work properly with several hosts on your apache server
+# Uncomment them to use it or adapt them to your configuration
+#    Alias /roundcube/program/js/tiny_mce/ /usr/share/tinymce/www/
 #    Alias /roundcube /var/lib/roundcube
 
+# Access to tinymce files
+<Directory "/usr/share/tinymce/www/">
+      Options Indexes MultiViews FollowSymLinks
+      AllowOverride None
+      Order allow,deny
+      allow from all
+</Directory>
+
 <Directory /var/lib/roundcube/>
-        Options +FollowSymLinks
-        AllowOverride All
-        order allow,deny
-        allow from all
+  Options +FollowSymLinks
+  # This is needed to parse /var/lib/roundcube/.htaccess. See its
+  # content before setting AllowOverride to None.
+  AllowOverride All
+  order allow,deny
+  allow from all
 </Directory>
 
 # Protecting basic directories:
@@ -28,3 +39,4 @@
        Order allow,deny
        Deny from all
 </Directory>
+