Revert "Use default ciphers for default ssl host to prevent confusing browser errors"

This reverts commit f9876326c9.

This is to make sure the browser doesn't show a certificate warning (for a connection that will be dropped anyway) by breaking the SSL handshake early.
This commit is contained in:
Jocelyn Le Sage 2018-11-26 06:38:24 -05:00
parent e923db7e94
commit 7f8b185e48

View File

@ -46,7 +46,7 @@ server {
ssl_certificate /data/nginx/dummycert.pem;
ssl_certificate_key /data/nginx/dummykey.pem;
include conf.d/include/ssl-ciphers.conf;
ssl_ciphers aNULL;
return 444;
}