You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: config.schema.json
+37Lines changed: 37 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -472,6 +472,43 @@
472
472
"items": {
473
473
"type": "string"
474
474
}
475
+
},
476
+
"auth": {
477
+
"description": "Credentials presented to the upstream proxy. Preferred over embedding credentials in `url`.",
478
+
"oneOf": [
479
+
{
480
+
"type": "object",
481
+
"name": "Basic Auth",
482
+
"description": "HTTP Basic — sends base64(username:password) in the Proxy-Authorization header on every CONNECT.",
483
+
"properties": {
484
+
"type": { "type": "string", "const": "basic" },
485
+
"username": { "type": "string" },
486
+
"password": { "type": "string" }
487
+
},
488
+
"required": ["type", "username", "password"],
489
+
"additionalProperties": false
490
+
},
491
+
{
492
+
"type": "object",
493
+
"name": "NTLM Auth",
494
+
"description": "Windows NTLM — multi-round CONNECT handshake (Type1/Type2/Type3) on the same TCP connection. Use when the proxy advertises `Proxy-Authenticate: NTLM`.",
0 commit comments