snort/docker/nginx.conf
2023-10-18 22:26:36 +01:00

10 lines
186 B
Nginx Configuration File

server {
listen 8080 default_server;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html =404;
}
}