adjust container name and match nginx sample file

This commit is contained in:
Umputun
2018-06-10 16:42:47 -05:00
parent ec411baf57
commit 5102186ad6
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -5,8 +5,8 @@ server {
server_name demo.remark42.com;
ssl on;
ssl_certificate SSL_CERT;
ssl_certificate_key SSL_KEY;
ssl_certificate SSL_CERT;
ssl_certificate_key SSL_KEY;
ssl_trusted_certificate SSL_CHAIN_CERT;
add_header Strict-Transport-Security "max-age=63072000; includeSubdomains; preload";
@@ -34,6 +34,6 @@ server {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_pass http://remark:8080/;
proxy_pass http://remark42:8080/;
}
}