Fix certificate file paths in Caddyfile and docker-compose.yml for correct renewal handling
Deploy mini-pc / deploy (push) Failing after 13s

This commit is contained in:
Dmitry
2026-05-27 19:49:21 +03:00
parent 6aa829f649
commit 62a263c9f6
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
git.ada-dev.ru {
tls /config/lego/certificates/_.ada-dev.ru.crt /config/lego/certificates/_.ada-dev.ru.key
tls /config/lego/certificates/ada-dev.ru.crt /config/lego/certificates/ada-dev.ru.key
reverse_proxy 192.168.1.5:3002
}
cloud.ada-dev.ru {
tls /config/lego/certificates/_.ada-dev.ru.crt /config/lego/certificates/_.ada-dev.ru.key
tls /config/lego/certificates/ada-dev.ru.crt /config/lego/certificates/ada-dev.ru.key
reverse_proxy 192.168.1.5:8081
}
+1 -1
View File
@@ -25,7 +25,7 @@ services:
- -c
- |
while true; do
if [ -f /lego-data/certificates/_.ada-dev.ru.crt ]; then
if [ -f /lego-data/certificates/ada-dev.ru.crt ]; then
/lego renew \
--email "$$LEGO_EMAIL" \
--dns timewebcloud \