mirror of
https://gitee.com/openharmony/third_party_nghttp2
synced 2024-11-23 07:50:02 +00: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";
|
|
}
|