Files
vps/nginx/acme.cfg
Михаил Капелько 335811b267 introduce steps
2025-12-06 07:00:38 +03:00

11 lines
180 B
INI

# 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;
}
}