mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
13 lines
286 B
Text
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;
|
|
}
|
|
}
|