validate client certificate on aws service -
could please let me know if there way redirect error page incase if client not provide valid certificate in aws waf or other services?
for example:
this section on website requires mutual ssl authentication:
subdomain.domain.com main section of website, , it's public:
domain.com client certificates authentication issued own ca, self signed. server certificate same. "known" clients have ca added trusted ca store.
if there's 3rd party client without valid client certificate accessing subdomain.domain.com shall redirected error page
it possible in apache using below configuration. want know whether possible using amazon waf or settings on application load balancer.
<location /welcome/> sslverifyclient optional sslverifydepth 1 rewriteengine on rewritecond %{ssl:ssl_client_verify} !^success$ rewriterule .* /myerrorpage.html </location>
Comments
Post a Comment