16 lines
346 B
Plaintext
16 lines
346 B
Plaintext
|
server {
|
||
|
listen 80;
|
||
|
listen [::]:80;
|
||
|
|
||
|
server_name {{ project_domain }};
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://{{ upstream_ip }}:{{ port }};
|
||
|
proxy_redirect off;
|
||
|
|
||
|
proxy_set_header Host $host;
|
||
|
proxy_set_header X-Real-IP $remote_addr;
|
||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
|
}
|
||
|
}
|