mirror of
https://github.com/certbot/certbot.git
synced 2026-03-18 00:22:20 -04:00
61 lines
1.6 KiB
Text
61 lines
1.6 KiB
Text
# 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
|
|
<IfVersion >= 2.3>
|
|
Require all granted
|
|
</IfVersion>
|
|
<IfVersion < 2.3>
|
|
Order allow,deny
|
|
Allow from all
|
|
</IfVersion>
|
|
</Directory>
|
|
|
|
<Directory /var/lib/roundcube/>
|
|
Options +FollowSymLinks
|
|
# This is needed to parse /var/lib/roundcube/.htaccess. See its
|
|
# content before setting AllowOverride to None.
|
|
AllowOverride All
|
|
<IfVersion >= 2.3>
|
|
Require all granted
|
|
</IfVersion>
|
|
<IfVersion < 2.3>
|
|
Order allow,deny
|
|
Allow from all
|
|
</IfVersion>
|
|
</Directory>
|
|
|
|
# Protecting basic directories:
|
|
<Directory /var/lib/roundcube/config>
|
|
Options -FollowSymLinks
|
|
AllowOverride None
|
|
</Directory>
|
|
|
|
<Directory /var/lib/roundcube/temp>
|
|
Options -FollowSymLinks
|
|
AllowOverride None
|
|
<IfVersion >= 2.3>
|
|
Require all denied
|
|
</IfVersion>
|
|
<IfVersion < 2.3>
|
|
Order allow,deny
|
|
Deny from all
|
|
</IfVersion>
|
|
</Directory>
|
|
|
|
<Directory /var/lib/roundcube/logs>
|
|
Options -FollowSymLinks
|
|
AllowOverride None
|
|
<IfVersion >= 2.3>
|
|
Require all denied
|
|
</IfVersion>
|
|
<IfVersion < 2.3>
|
|
Order allow,deny
|
|
Deny from all
|
|
</IfVersion>
|
|
</Directory>
|