[vaultwarden] skip auth on route required for chrome extension
This commit is contained in:
parent
ae53ce5b24
commit
a5a2a02c9c
1 changed files with 5 additions and 1 deletions
|
@ -199,7 +199,11 @@ rec {
|
||||||
egress = [ "http://127.0.0.1:${toString serviceIngress}" ];
|
egress = [ "http://127.0.0.1:${toString serviceIngress}" ];
|
||||||
realm = sso.realm;
|
realm = sso.realm;
|
||||||
allowed_roles = [ "user" "/admin|admin" ];
|
allowed_roles = [ "user" "/admin|admin" ];
|
||||||
skip_auth_routes = [ "^/api" "^/identity/connect/token" ];
|
skip_auth_routes = [
|
||||||
|
"^/api"
|
||||||
|
"^/identity/connect/token"
|
||||||
|
"^/identity/accounts/prelogin"
|
||||||
|
];
|
||||||
inherit metricsPort;
|
inherit metricsPort;
|
||||||
keys = {
|
keys = {
|
||||||
cookieSecret = "${serviceName}_oauth2proxy_cookiesecret";
|
cookieSecret = "${serviceName}_oauth2proxy_cookiesecret";
|
||||||
|
|
Loading…
Reference in a new issue