Nginx 400 SSL handshaking -
i'm using nginx , add certificate on website, , got strange error.
here part of access.log :
x.y.z.w - - [12/nov/2014:15:16:09 +0100] "-" 400 0 "-" "-" host : - x.y.z.w - - [12/nov/2014:15:16:09 +0100] "-" 400 0 "-" "-" host : -
i see nothing in error.log when force error.log more precise, got :
2014/11/12 15:16:09 [info] 16027#0: *24870 client closed prematurely connection while ssl handshaking, client: x.y.z.w, server: sub.domain.com 2014/11/12 15:16:09 [info] 16027#0: *24871 client closed prematurely connection while ssl handshaking, client: x.y.z.w, server: sub.domain.com
here part of nginx config file :
server { listen 80; server_name sub.domain.com; root /var/www; rewrite ^ https://$server_name$request_uri? permanent; } server { listen 443 ssl; server_name sub.domain.com; root /var/www; ssl_certificate /var/server.crt; ssl_certificate_key /var/server.key; ...
there no error on client side.
it normal ? come ?
it normal ? come ?
it might clients close before finishing handshake. might case if certificate inside handshake, fail verify certificate because self-signed or other reasons, , have check user if should continue.
Comments
Post a Comment