Hello folks, here I come to you with another problem
This time I try to run my webmail client (atmail) over ssl. I tried to do that by just adjusting the parameters in my squirrelmail.conf file in conf.d apache2's folder.
Code:
<IfModule mod_rewrite.c>
<IfModule mod_ssl.c>
<Location /webmail>
RewriteEngine on
RewriteCond %{HTTPS} !^on$ [NC]
RewriteRule . https://%{HTTP_HOST}%{REQUEST_URI} [L]
</Location>
</IfModule>
</IfModule>
It goes well, it redirects from
http://domain.com/webmail to
https://domain.com/webmail but when it gets there I get this error in my chrome browser:
Code:
SSL connection error
Unable to make a secure connection to the server. This may be a problem with the server, or it may be requiring a client authentication certificate that you don't have.
Error 107 (net::ERR_SSL_PROTOCOL_ERROR): SSL protocol error.
and this in my apache2/error.log
Code:
client denied by server configuration: /htdocs
Any idea?
Recent comments
1 day 14 hours ago
1 day 23 hours ago
2 days 2 hours ago
2 days 3 hours ago
2 days 5 hours ago
2 days 6 hours ago
2 days 8 hours ago
2 days 9 hours ago
3 days 1 hour ago
3 days 2 hours ago