add prefix to env variables
Build and Deploy Docker / build (push) Successful in 1m42s
Build and Deploy Docker / deploy (push) Successful in 41s

This commit is contained in:
2026-06-30 11:47:52 +02:00
parent abc3da8161
commit c3896d20a1
3 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -6,9 +6,9 @@ if (isset($_ENV['LOCAL']) && $_ENV['LOCAL']) {
}
// old
// https://www.duckdns.org/update?domains=rhost.duckdns.org&token=1b4ab267-b818-4407-8351-8800c6f4fd78
$toUpdateString = $_ENV['DOMAIN_UPDATE'];
$user = $_ENV['USER'];
$pass = $_ENV['PASSWORD'];
$toUpdateString = $_ENV['DYNDNS_DOMAIN_UPDATE'];
$user = $_ENV['DYNDNS_USER'];
$pass = $_ENV['DYNDNS_PASSWORD'];
$dateUpdate = date("Y-m-d H:i:s");
if (!$toUpdateString || !$user || !$pass) {