Hi,
I’ve set up a test domain using a Let’s Encrypt certificate, with nginx 1.8.0 on a Ubuntu host. All browsers I’ve tested it with work fine, except for Safari (9.0.1 on OS X 10.11.1) and Mobile Safari on iOS 9.1.
They fail to connect to my site over https, saying that “the server dropped the connection”. Connecting to the same site over regular http does work in Safari.
Can anyone else reproduce this, or is it a misconfguration on my end?
My nginx configuration is included below.
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name duckson.nl;
ssl_certificate /etc/letsencrypt/live/duckson.nl/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/duckson.nl/privkey.pem;
ssl_trusted_certificate /etc/letsencrypt/live/duckson.nl/chain.pem;
ssl_stapling on;
ssl_stapling_verify on;
root /var/www/domains/duckson.nl;
index index.html;
# Some additional 'location {}' blocks here
}