diff --git a/443.conf b/443.conf index ff1fdcc..a4b0900 100644 --- a/443.conf +++ b/443.conf @@ -93,6 +93,24 @@ server { } } +server { + # listen 80; + listen 443 ssl http2; + listen [::]:443 ssl http2; + + server_name devops.inno-js.ru; + + ssl_certificate /etc/letsencrypt/live/hub.inno-js.ru/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/hub.inno-js.ru/privkey.pem; + ssl_trusted_certificate /etc/letsencrypt/live/hub.inno-js.ru/chain.pem; + + include /etc/nginx/snippets/ssl-params.conf; + + location / { + proxy_pass http://212.193.57.252:80/; + } +} + server { # listen 80; listen 443 ssl http2;