Updated Nginx Reverse Proxy Configuration (markdown)

schwukas 2020-11-12 10:19:16 +01:00
parent c191db34d7
commit 611d273231

@ -1,3 +1,6 @@
This is a very basic nginx reverse proxy config, secured with Let's Encrypt. Do not forget to replace ServerName with your domain and make sure you are redirecting `proxy_pass` to the correct port.
```
# This first block redirects non-HTTPS traffic to secure port 443. Optional, but recommended.
server {
listen 80;
@ -22,4 +25,5 @@ server {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
}
```