snort/docker/nginx.conf

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;
}
}