certbot/certbot-compatibility-test/nginx/nginx-roundtrip-testdata/server_blocks/catchall.conf
2016-07-11 13:58:21 -07:00

13 lines
286 B
Text

http {
index index.html;
server {
listen 80 default_server;
server_name _; # This is just an invalid value which will never trigger on a real hostname.
access_log logs/default.access.log main;
server_name_in_redirect off;
root /var/www/default/htdocs;
}
}