mirror of
https://github.com/certbot/certbot.git
synced 2026-04-21 22:26:59 -04:00
17 lines
296 B
Text
17 lines
296 B
Text
http {
|
|
index index.html;
|
|
|
|
server {
|
|
server_name www.domain1.com;
|
|
access_log logs/domain1.access.log main;
|
|
|
|
root /var/www/domain1.com/htdocs;
|
|
}
|
|
|
|
server {
|
|
server_name www.domain2.com;
|
|
access_log logs/domain2.access.log main;
|
|
|
|
root /var/www/domain2.com/htdocs;
|
|
}
|
|
}
|