Add approuter

This commit is contained in:
Uwe Klinger
2021-05-04 15:57:39 +02:00
parent 81f762d7be
commit 09aa318879
15 changed files with 171 additions and 37 deletions

View File

@@ -0,0 +1,28 @@
{
"welcomeFile": "/admin-fiori.html",
"authenticationMethod": "route",
"sessionTimeout": 30,
"logout": {
"logoutEndpoint": "/do/logout",
"logoutPage": "/"
},
"routes": [
{
"source": "^/((admin|browse|orders)/webapp/.*)$",
"target": "$1",
"localDir": ".",
"authenticationType": "xsuaa"
},
{
"source": "^(/[^/]+\\.html(\\?.*)?)$",
"target": "$1",
"localDir": ".",
"authenticationType": "xsuaa"
},
{
"source": "^.*$",
"destination": "srv-api",
"authenticationType": "xsuaa"
}
]
}