mirror of
https://github.com/nghttp2/nghttp2.git
synced 2025-12-06 18:18:52 +08:00
7 lines
162 B
Plaintext
7 lines
162 B
Plaintext
function FindProxyForURL(url, host) {
|
|
// For SPDY proxy
|
|
return "HTTPS localhost:3000";
|
|
// For conventional HTTP proxy
|
|
// return "PROXY localhost:3000";
|
|
}
|