itamae/cookbooks/nginx/files/etc/nginx/sites-available/default
2019-03-03 16:50:49 +08:00

10 lines
150 B
Plaintext

# Denies the access without the pre-defined virtual host.
server {
listen 80 default_server;
server_name _;
location / {
return 444;
}
}