Skip to content

Commit

Permalink
fix(standalone): keycloak replacement regex
Browse files Browse the repository at this point in the history
  • Loading branch information
redallen committed Oct 11, 2021
1 parent c80af7d commit 5edfe85
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ module.exports.registerChrome = ({ app, chromePath, keycloakUri, https, proxyVer
console.log('inject keycloak', req.url);
}
fileString = fileString
.replace(/http:\/\/sso.qa.redhat.com/gm, keycloakUri);
.replace(/https?:\/\/sso.qa.redhat.com/gm, keycloakUri);
}
res.end(fileString);
} else {
Expand Down

0 comments on commit 5edfe85

Please sign in to comment.