mirror of
https://github.com/plausible/hosting.git
synced 2024-11-04 23:35:59 -06:00
10 lines
199 B
Plaintext
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;
|
||
|
}
|
||
|
}
|