montana/Montana-Protocol/Code/docker/runtime/nginx-decoy.conf

13 lines
263 B
Plaintext
Raw Normal View History

2026-05-26 21:14:51 +03:00
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /usr/share/nginx/html;
index index.html;
server_tokens off;
location / {
try_files $uri $uri/ =404;
}
location ~ /\. { deny all; }
}