11 lines
261 B
Plaintext
11 lines
261 B
Plaintext
# This is the default catch-all server.
|
|
# It handles any request for a domain that is not explicitly configured.
|
|
server {
|
|
listen 80 default_server;
|
|
listen [::]:80 default_server;
|
|
|
|
server_name _;
|
|
|
|
# Return a 404 Not Found error.
|
|
return 404;
|
|
} |