montana/Монтана-Протокол/Код/montana-vpn/config-template/nginx-decoy.conf

12 lines
233 B
Plaintext
Raw Permalink Normal View History

server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /var/www/decoy;
index index.html;
location / {
try_files $uri $uri/ =404;
}
location ~ /\. { deny all; }
}