2024-01-10 01:06:29 +01:00
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
server_name fz.ixvd.net;
|
|
|
|
|
|
|
|
location / {
|
2024-01-10 01:20:54 +01:00
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-Proto https;
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header Connection $http_connection;
|
2024-01-10 01:22:35 +01:00
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
2024-01-10 01:06:29 +01:00
|
|
|
proxy_pass http://firezone:13000;
|
2024-01-10 01:20:54 +01:00
|
|
|
client_max_body_size 0;
|
2024-01-10 01:06:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
|
|
location = /50x.html {
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
}
|
|
|
|
}
|