[Resolved] ssl/certificate auth

Status
Not open for further replies.

nullx8

Active Member
#1
has anyone sucessfully got ssl authenticaton to work on lsws ?

what i want to accomplish is sites to be viewable only if the proper clent certificate is avaiable
 

nullx8

Active Member
#3
everything native here ;)
on all servers,

are there any examples avaiable somewhere ?
the apache examples are pretty much useless
 

nullx8

Active Member
#5
oh that was alot more easy as i expected ... works like a charm in combination with the Comodo ssl certificate.

no client certificate results now in a solid SSL Error ...
thanks again
 

nullx8

Active Member
#6
while on that topic ..
the http error is 403.16 (i assume) ... is i possible to generate a redirect .. since the error is generated by the listener i not so sure where and how to place it ?

the idea was to have some redirect to a non-ssl page tell the user to get a certificate to connect.
 

NiteWave

Administrator
#7
1. create a http listener (port 80)
2. both http(port 80) and https (port 443) map to same virtual host.
3. in .htaccess
Code:
RewriteEngine On
RewriteCond %{HTTPS} off
Rewrite .* /info-page.html [L]
 
Last edited by a moderator:

mistwang

LiteSpeed Staff
#8
The SSL error is at Layer4, no possible to add a layer7 403 error page for that.
Neither server, nor client can sen or receive anything from each other.
 
Status
Not open for further replies.
Top