Files
remark42/backend/nginx-proxy-example.conf
T

24 lines
704 B
Plaintext

# example of nginx proxy to use with nginx-le - https://github.com/nginx-le/nginx-le
server {
listen 443;
server_name demo.remark42.com;
ssl on;
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";
limit_conn perip 10;
location / {
proxy_redirect off;
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://remark42:8080/;
}
}