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.

19 lines
277 B

server {
index index.html;
root MY_ROOT;
server_name DOMAIN;
location / {
try_files $uri $uri/;
}
if ($host = DOMAIN) {
return 301 https://$host$request_uri;
} # managed by Certbot
listen 80;
listen [::]:80;
return 404; # managed by Certbot
}