14 lines
222 B
Plaintext
14 lines
222 B
Plaintext
server {
|
|
listen 80;
|
|
server_name yalarba.ru;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
}
|
|
|
|
location /.well-known/acme-challenge/ {
|
|
root /var/www/certbot;
|
|
}
|
|
}
|