damp-electrician-60600
10/13/2022, 3:49 PM{
"id": "kratos:login",
"upstream": {
"url": "<http://my-application>"
},
"match": {
"url": "<http|https>://<(.*).?localhost|127.0.0.1><:?><[[:digit:]]*>/login<.*>",
"methods": [
"POST",
"OPTIONS",
"GET"
]
},
"authenticators": [
{
"handler": "noop"
}
],
"authorizer": {
"handler": "allow"
},
"mutators": [
{
"handler": "noop"
}
]
}
Whenever I navigate to 127.0.0.1:8081
I see the welcome screen, I click Sign In, I enter invalid userID and password, and I see the following error message:
{"errors":[{"error_type":"Unauthorized","code":401}]}
. In docker logs I see the 401 error when I navigate to the initial welcome URL (code snippet incoming). Has anyone experienced this behavior before?