Files
11note-docker-netbird/rootfs/nginx/etc/default.conf
ElevenNotes 6f2c0e7f77 init
2025-06-18 11:31:29 +02:00

21 lines
460 B
Plaintext

server {
listen 3000 default_server;
root /nginx/var;
location / {
try_files $uri $uri.html $uri/ =404;
add_header Cache-Control "no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0";
expires off;
}
error_page 404 /404.html;
location = /404.html {
internal;
add_header Cache-Control "no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0";
expires off;
}
location /ping {
return 200;
}
}