Cybersecurity-Projects/PROJECTS/intermediate/siem-dashboard/conf/nginx/dev.nginx

70 lines
1.9 KiB
Nginx Configuration File

# ©AngelaMos | 2026
# dev.nginx
server {
listen 80;
listen [::]:80;
server_name _;
access_log /var/log/nginx/access.log main_timed;
error_log /var/log/nginx/error.log debug;
add_header Cache-Control "no-store, no-cache, must-revalidate" always;
location /health {
access_log off;
return 200 "1";
add_header Content-Type text/plain;
}
location ~ ^/api(/v1/(logs|alerts)/stream.*) {
rewrite ^/api(/.*)$ $1 break;
proxy_pass http://backend;
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_buffering off;
proxy_cache off;
proxy_read_timeout 3600s;
proxy_send_timeout 3600s;
chunked_transfer_encoding off;
}
location /api/ {
limit_req zone=api_limit burst=50 nodelay;
limit_conn conn_limit 20;
proxy_pass http://backend/;
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_buffering off;
proxy_request_buffering off;
proxy_connect_timeout 60s;
proxy_send_timeout 60s;
proxy_read_timeout 60s;
}
location / {
proxy_pass http://frontend_dev;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_read_timeout 60s;
proxy_buffering off;
}
}