buildable docker compose

This commit is contained in:
2026-06-28 13:23:00 -07:00
parent de70005b39
commit 621e8bd7b6
3 changed files with 27 additions and 3 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
# Map ISO timestamp to date-only string for daily log rotation
map $time_iso8601 $log_date {
~^(?<date>\d{4}-\d{2}-\d{2}) $date;
"~^(?<date>\d{4}-\d{2}-\d{2})" $date;
default "unknown";
}
@@ -26,7 +26,7 @@ server {
# Proxy API calls to the backend service
location /api/ {
proxy_pass ${API_UPSTREAM};
proxy_pass __API_UPSTREAM__;
proxy_set_header Host $host;
proxy_set_header Origin $http_origin;
proxy_set_header Referer $http_referer;