37 lines
890 B
Plaintext
37 lines
890 B
Plaintext
#
|
|
# SquirrelMail is a webmail package written in PHP.
|
|
#
|
|
|
|
Alias /webmail /usr/share/squirrelmail
|
|
|
|
<Directory "/usr/share/squirrelmail/plugins/squirrelspell/modules">
|
|
<IfModule mod_authz_core.c>
|
|
# Apache 2.4
|
|
Require all denied
|
|
</IfModule>
|
|
<IfModule !mod_authz_core.c>
|
|
# Apache 2.2
|
|
Order deny,allow
|
|
Deny from all
|
|
</IfModule>
|
|
</Directory>
|
|
|
|
# this section makes squirrelmail use https connections only, for this you
|
|
# need to have mod_ssl installed. If you want to use unsecure http
|
|
# connections, just remove this section:
|
|
<Directory /usr/share/squirrelmail>
|
|
RewriteEngine on
|
|
RewriteCond %{HTTPS} !=on
|
|
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
|
|
<IfModule mod_authz_core.c>
|
|
# Apache 2.4
|
|
Require all granted
|
|
</IfModule>
|
|
<IfModule !mod_authz_core.c>
|
|
# Apache 2.2
|
|
Order allow,deny
|
|
Allow from all
|
|
</IfModule>
|
|
</Directory>
|
|
|