Enhancement: more reliable wg-easy widget by custom proxy, use password header (#3966)
Some checks are pending
Docker / Linting Checks (push) Waiting to run
Docker / Docker Build & Push (push) Blocked by required conditions

This commit is contained in:
shamoon
2024-09-09 11:40:11 -07:00
committed by GitHub
parent 133d2d6e02
commit 2d0beabe9a
4 changed files with 13 additions and 90 deletions

View File

@@ -88,6 +88,8 @@ export default async function credentialedProxyHandler(req, res, map) {
if (widget.key) {
headers.Cookie = `authenticated=${widget.key}`;
}
} else if (widget.type === "wgeasy") {
headers.Authorization = widget.password;
} else {
headers["X-API-Key"] = `${widget.key}`;
}