mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-31 18:55:32 +01:00
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:
@@ -1,5 +1,9 @@
|
||||
# Changelog
|
||||
|
||||
## 2.3
|
||||
|
||||
- Fix issue with nginx warning for ssl directive
|
||||
|
||||
## 2.2
|
||||
|
||||
- Fix issue with `homeassistant` connection
|
||||
|
||||
@@ -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/",
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user