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.
templates/nginx/subdomain_basic_root.conf

15 lines
182 B

server{
index index.html;
root MY_ROOT;
server_name DOMAIN;
location / {
try_files $uri $uri/;
}
listen 80;
listen [::]:80;
return 404; # managed by Certbot
}