3158158e72
add https on 443 port stub site
23 lines
496 B
Plaintext
23 lines
496 B
Plaintext
server {
|
|
listen 80;
|
|
server_name yalarba.ru easysite102.ru valitovgaziz.ru бегущийбашкир.рф;
|
|
|
|
location / {
|
|
root /usr/share/nginx/stub/html;
|
|
index index.html;
|
|
}
|
|
|
|
location /.well-known/acme-challenge/ {
|
|
root /var/www/certbot;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 443;
|
|
server_name yalarba.ru easysite102 valitovgaziz.ru бегущийбашкир.рф;
|
|
|
|
location / {
|
|
root /usr/share/nginx/stub/html;
|
|
index index.html;
|
|
}
|
|
} |