snort/docker/nginx.conf

10 lines
186 B
Nginx Configuration File
Raw Normal View History

2023-02-12 19:10:10 +00:00
server {
2023-10-18 21:26:36 +00:00
listen 8080 default_server;
2023-02-12 19:10:10 +00:00
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html =404;
}
}