mirror of
https://github.com/plausible/hosting.git
synced 2024-11-04 23:35:59 -06:00
19 lines
378 B
Plaintext
19 lines
378 B
Plaintext
server {
|
|
# replace example.com with your domain name
|
|
server_name example.com;
|
|
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:8000;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
location = /live/websocket {
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
}
|
|
}
|
|
}
|