security: sanitize hardcoded values with placeholders for public repo

This commit is contained in:
corrado.mulas
2026-04-06 14:03:15 +02:00
commit fbdd3574b3
17 changed files with 656 additions and 0 deletions

17
nginx.conf Normal file
View File

@@ -0,0 +1,17 @@
server {
listen 80;
server_name _;
# Serve the frontend static files
root /usr/share/nginx/html;
index index.html;
# Serve all requests as static files
location / {
try_files $uri /index.html;
}
# Logs for debugging (optional)
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
}