neb/servers/apoc/docker-compose.d/custom/nginx/conf.d/firezone.conf
2024-01-10 01:06:29 +01:00

13 lines
236 B
Text

server {
listen 80;
server_name fz.ixvd.net;
location / {
proxy_pass http://firezone:13000;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}