snort/docker/nginx.conf

10 lines
184 B
Nginx Configuration File
Raw Normal View History

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