nginx-config/sites-available/default

10 lines
150 B
Plaintext
Raw Normal View History

2023-01-28 10:46:57 +00:00
# Denies the access without the pre-defined virtual host.
server {
listen 80 default_server;
server_name _;
location / {
return 444;
}
}