mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-13 00:11:05 +01:00
12 lines
337 B
Plaintext
12 lines
337 B
Plaintext
|
location /
|
||
|
{
|
||
|
proxy_pass http://127.0.0.1:{{http_port}}/;
|
||
|
proxy_set_header Host $host;
|
||
|
proxy_set_header X-Real-IP $remote_addr;
|
||
|
proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto;
|
||
|
proxy_connect_timeout 300;
|
||
|
proxy_send_timeout 300;
|
||
|
proxy_read_timeout 300;
|
||
|
send_timeout 300;
|
||
|
}
|