Enhancement: more reliable wg-easy widget by custom proxy, use password header (#3966)

This commit is contained in:
shamoon 2024-09-09 11:40:11 -07:00 committed by GitHub
parent 133d2d6e02
commit 2d0beabe9a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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}`;
}