introduce steps

This commit is contained in:
Михаил Капелько
2025-12-06 07:00:38 +03:00
parent e66f3b779c
commit 335811b267
12 changed files with 62 additions and 7 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;
}
}