This commit is contained in:
2026-02-12 02:58:29 -08:00
parent e537d9c918
commit afe2d7f7e6
4 changed files with 304 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
# Security headers
add_header X-Frame-Options "SAMEORIGIN";
add_header X-Content-Type-Options "nosniff";
}