REST API Log in problem after updating to 1.1.6

Domino/Notes Version 14.5FP1
Domino REST API 1.1.6:
Operating System: Rocky10

Problem/Query:

host:8880/admin/ui log in fails with ‘403 error:’

For me it is not clear, which ACL settings are involved here. Is it keepconfig.nsf ? The users which trie to log in are having manager access. In prior Restapi 1.1.0 there was no problem.

Rest API 1.1.3 introduces a change in CORS syntax.

Now the file cors.json should look like this:

{
“CORS”: {
“^https?:\/\/localhost(?:\:\d+)?$”: true,
“^https?:\/\/.*\.local(?:\:\d+)?$”: true,
“^https:\/\/host\.domain\.org\:8880$”: true,
“^https:\/\/host.domain.org\:8880$”: true
}
}

CORS check, when fail, give a 403 errors. It can be this.

Thank you for that hint, it works.