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:
parent
e8b0b7e310
commit
aba4c4498c
5 changed files with 151 additions and 131 deletions
|
|
@ -41,7 +41,7 @@ http {
|
|||
}
|
||||
location / {
|
||||
proxy_ssl_verify off;
|
||||
return 301 'https://$http_host/app/$request_uri';
|
||||
proxy_pass http://localhost:5173/;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue