You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
293 B

server {
listen 80 default_server;
server_name {{ nginx_domain_name }};
location /.well-known/acme-challenge {
root /var/www/html;
try_files $uri $uri/ =404;
}
location / {
rewrite ^ https://{{ nginx_domain_name }}$request_uri? permanent;
}
}