http client cli proxy settings

已回答

How can we pass noProxy host to http client cli docker image. As we have intranet and internet host in our http files. and want to use proxy only for internet.

docker run --add-host host.docker.internal:host-gateway --rm -v $PWD/:/workdir jetbrains/intellij-http-client httpclients/* -e dev -D  -v httpclients/rest-client.env.json  --proxy=http://proxy.example.com:3128

saw this in help 

--proxy=<proxyUrl>   Proxy setting in format
                          'scheme://login:password@host:port',

but how to pass all of below using this option

"httpProxy": "http://proxy.example.com:3128",
     "httpsProxy": "https://proxy.example.com:3129",
     "noProxy": "*.test.example.com,.example.org,127.0.0.0/8"
1

Hello, Kishore Tulsiani. Unfortunately, there is no option to specify several proxy URLs yet. I created a feature request in our YouTrack to add this possibility; please, feel free to follow it to receive updates and show your interest in it.

0

请先登录再写评论。