Разработана первая версия приложений

This commit is contained in:
mi
2026-07-10 18:06:14 +03:00
parent aa8761d1b3
commit 8c7b4074c4
162 changed files with 12178 additions and 16 deletions
@@ -0,0 +1,16 @@
server {
listen 80;
server_name ${PUBLIC_HOST};
location = /nginx-health/live {
access_log off;
return 200 "ok\n";
}
location ^~ /.well-known/acme-challenge/ {
root /var/www/certbot;
default_type text/plain;
}
location ^~ /internal/ { return 404; }
location ^~ /_internal/ { return 404; }
location / { return 308 https://$host$request_uri; }
}