Files
tp/nginx/nginx-http.conf
T

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;
}
}