1
0
mirror of https://github.com/kazu634/nginx-config.git synced 2025-04-11 10:47:08 +00:00
nginx-config/sites-available/default
2023-01-28 19:46:57 +09: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;
}
}