mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 22:33:00 -04:00
10 lines
209 B
Text
10 lines
209 B
Text
server {
|
|
listen myhost default_server;
|
|
listen otherhost default_server;
|
|
server_name www.example.org;
|
|
|
|
location / {
|
|
root html;
|
|
index index.html index.htm;
|
|
}
|
|
}
|