Files
netbird-dashboard/docker/default.conf
2021-09-03 15:00:54 +02:00

16 lines
313 B
Plaintext

# simple server configuration to replace nginx's default
server {
listen 80 default_server;
listen [::]:80 default_server;
root /usr/share/nginx/html;
location / {
try_files $uri /index.html;
}
# You may need this to prevent return 404 recursion.
location = /404.html {
internal;
}
}