Files
marcredhat-siem-toolkit-pat…/frontend/nginx.conf
T
2026-05-20 23:44:53 +02:00

10 lines
158 B
Nginx Configuration File

server {
listen 3000;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ $uri.html /index.html;
}
}