feat(db): add new columns to medications and users tables for enhanced data tracking

feat(oidc): refactor setAuthCookies to use centralized cookie options for consistency
feat(nginx): update configuration to pass cookies through proxy for improved session handling
This commit is contained in:
Daniel Volz
2025-12-28 02:32:45 +01:00
parent 17a535866b
commit f3da765f7c
3 changed files with 15 additions and 20 deletions
+4
View File
@@ -26,6 +26,10 @@ server {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# Pass cookies through
proxy_pass_header Set-Cookie;
proxy_cookie_path / /;
# Timeout for uploads
proxy_read_timeout 60s;
proxy_send_timeout 60s;