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