mirror of
https://github.com/lukevella/rallly-selfhosted.git
synced 2025-12-10 10:52:50 +01:00
13 lines
230 B
Plaintext
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;
|
|
}
|
|
}
|