This commit is contained in:
2026-01-24 05:01:42 +01:00
parent 5258bb012e
commit 3025f3c2d8
21 changed files with 108 additions and 10 deletions

10
nginx/acme.cfg Normal file
View File

@@ -0,0 +1,10 @@
# Serve only through HTTP while updating the certificate
server {
listen 80;
server_name kornerr.ru;
root /var/www/html;
location / {
try_files $uri $uri/ =404;
}
}