Removed unecessary application_id s

This commit is contained in:
2025-07-11 15:25:58 +02:00
parent 25cee9a4c7
commit aa61bf2a44
33 changed files with 19 additions and 22 deletions

View File

@@ -0,0 +1,16 @@
server
{
listen 80;
listen [::]:80;
location /
{
return 301 https://$host$request_uri;
}
#letsencrypt
location ^~ /.well-known/acme-challenge/ {
allow all;
root {{ certbot_webroot_path }};
default_type "text/plain";
try_files $uri =404;
}
}