diff --git a/80.conf b/80.conf index 95ab752..96041c7 100644 --- a/80.conf +++ b/80.conf @@ -77,6 +77,22 @@ server { } } +server { + listen 443 ssl http2; + listen [::]:443 ssl http2; + server_name admin.inno-js.ru; + + ssl_certificate /etc/letsencrypt/live/inno-js.ru/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/inno-js.ru/privkey.pem; + ssl_trusted_certificate /etc/letsencrypt/live/inno-js.ru/chain.pem; + + include /etc/nginx/snippets/ssl-params.conf; + + location / { + proxy_pass http://212.193.59.173:3072; + } +} + # server { # listen 80; # index index.php index.html index.htm index.nginx-debian.html;