This commit is contained in:
Bastian Wagner
2026-07-15 15:53:27 +02:00
parent a79988b35c
commit d51d915c74
8 changed files with 119 additions and 36 deletions

42
apps/web/proxy.conf.json Normal file
View File

@@ -0,0 +1,42 @@
{
"/.well-known": {
"target": "http://localhost:3000",
"secure": false,
"changeOrigin": true
},
"/oidc": {
"target": "http://localhost:3000",
"secure": false,
"changeOrigin": true
},
"/interaction": {
"target": "http://localhost:3000",
"secure": false,
"changeOrigin": true
},
"/auth": {
"target": "http://localhost:3000",
"secure": false,
"changeOrigin": true
},
"/account": {
"target": "http://localhost:3000",
"secure": false,
"changeOrigin": true
},
"/admin": {
"target": "http://localhost:3000",
"secure": false,
"changeOrigin": true
},
"/password": {
"target": "http://localhost:3000",
"secure": false,
"changeOrigin": true
},
"/registration": {
"target": "http://localhost:3000",
"secure": false,
"changeOrigin": true
}
}