1
0
mirror of https://github.com/lukevella/rallly-selfhosted.git synced 2025-12-10 19:00:12 +01:00
2023-01-12 19:40:40 +00:00

13 lines
230 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:3000;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}