plausible/reverse-proxy/nginx/plausible

10 lines
199 B
Plaintext

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;
}
}