Add reverse-proxy configuration for existing NGINX installation

This commit is contained in:
birjolaxew
2020-10-30 05:43:45 +01:00
parent 2e9dd1560e
commit f055f1d0aa
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,9 @@
server {
# replace example.com with your domain name
server_name example.com;
location / {
proxy_pass http://127.0.0.1:8000;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}