fix: make linkstack timezone configurable via env instead of hardcoded

This commit is contained in:
Madhur
2026-02-21 08:18:02 +05:30
parent 38e417b194
commit 49ddd31e98
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ services:
linkstack:
image: linkstackorg/linkstack:latest
environment:
TZ: "Europe/Berlin"
TZ: "${TZ:-UTC}"
SERVER_ADMIN: "${admin_email}"
HTTP_SERVER_NAME: "${main_domain}"
HTTPS_SERVER_NAME: "${main_domain}"

View File

@@ -10,7 +10,7 @@ port = 80
host = "${main_domain}"
[config.env]
TZ = "Europe/Berlin"
TZ = "UTC"
SERVER_ADMIN = "${admin_email}"
HTTP_SERVER_NAME = "${main_domain}"
HTTPS_SERVER_NAME = "${main_domain}"