forked from github.com/plausible-hosting
Add reverse-proxy configuration for existing NGINX installation
This commit is contained in:
9
reverse-proxy/nginx/plausible
Normal file
9
reverse-proxy/nginx/plausible
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user