feat(frontend/auth): fix cookie not working due to path being /app

Cookies being set to path=/app meant that the API didn't have those
cookies.
Also fixed the Schema injection for auth'ed routes
This commit is contained in:
Maieul BOYER 2025-11-10 18:43:34 +01:00 committed by Maix0
parent e8b0b7e310
commit aba4c4498c
5 changed files with 151 additions and 131 deletions

View file

@ -41,7 +41,7 @@ http {
}
location / {
proxy_ssl_verify off;
return 301 'https://$http_host/app/$request_uri';
proxy_pass http://localhost:5173/;
}
}
}