fix: frontend nginx restart loop from invalid log_format scope (#350)

* fix: place nginx log_format in valid context

* fix: unblock required checks for nginx hotfix

* fix: restore mandatory doku files in nginx hotfix pr
This commit is contained in:
Daniel Volz
2026-02-27 01:47:59 +01:00
committed by GitHub
parent 8e4cb5dcd4
commit b009d9e158
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ function buildLoggerOptions(level: string) {
level,
timestamp: () => `,"time":"${new Date().toISOString()}"`,
};
// Human readable logs in development, structured JSON in production/test
// Human-readable logs in development, structured JSON in production/test
if (process.env.NODE_ENV !== "production" && process.env.NODE_ENV !== "test") {
return {
...base,