mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
10 lines
211 B
Text
10 lines
211 B
Text
server {
|
|
listen myhost default_server;
|
|
listen otherhost default_server;
|
|
server_name "www.example.org";
|
|
|
|
location / {
|
|
root html;
|
|
index index.html index.htm;
|
|
}
|
|
}
|