13 lines
375 B
Plaintext
13 lines
375 B
Plaintext
|
# This file is a nginx catch-all vhost, probably put here in an automated
|
||
|
# fashion.
|
||
|
server {
|
||
|
listen 80;
|
||
|
listen [::]:80 ipv6only=on;
|
||
|
server_name _; # This is just an invalid value which will never trigger on a real hostname.
|
||
|
access_log /var/log/nginx/default.access.log;
|
||
|
index index.html;
|
||
|
server_name_in_redirect off;
|
||
|
root /srv/www/catch-all;
|
||
|
}
|
||
|
|