Update nginx.conf fix nginx: [warn] the "ssl" directive is deprecated (#693)

* Update nginx.conf

Fix for the nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in ngnix.conf:45 appearing in log

* Update CHANGELOG.md

* Update config.json

* Update CHANGELOG.md
This commit is contained in:
Shiwigy
2019-09-11 11:27:28 +02:00
committed by Pascal Vizeli
parent 947f6236a4
commit 3944fc6a53
3 changed files with 6 additions and 3 deletions

View File

@@ -1,5 +1,9 @@
# Changelog
## 2.3
- Fix issue with nginx warning for ssl directive
## 2.2
- Fix issue with `homeassistant` connection

View File

@@ -1,6 +1,6 @@
{
"name": "NGINX Home Assistant SSL proxy",
"version": "2.2",
"version": "2.3",
"slug": "nginx_proxy",
"description": "An SSL/TLS proxy",
"url": "https://home-assistant.io/addons/nginx_proxy/",

View File

@@ -40,9 +40,8 @@ http {
# dhparams file
ssl_dhparam /data/dhparams.pem;
listen [::]:443 http2;
listen [::]:443 ssl http2;
%%HSTS%%
ssl on;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!RC4";
ssl_prefer_server_ciphers on;