New answers tagged proxy
Score of 1
1
vote
How do you check if the proxy in Windows Proxy Settings is on?
there is one very straightforward way to check this:
public class Main {
public static void main(String[] args) {
if(System.getProperty("http.proxyHost") != null) {
...
Score of 1
1
vote
Node.js global proxy setting
This works for me with Node 22.22
export NODE_USE_ENV_PROXY=1
export NODE_TLS_REJECT_UNAUTHORIZED=0
export HTTPS_PROXY=http://0.0.0.0:8888
node myscript.js
Top 50 recent answers are included
Related Tags
proxy × 19362java × 2025
python × 1953
nginx × 1470
node.js × 1373
c# × 1263
http × 1130
php × 1034
apache × 995
javascript × 852
ssl × 666
selenium-webdriver × 649
reverse-proxy × 643
https × 628
android × 604
docker × 593
network-programming × 555
sockets × 499
curl × 450
http-proxy × 415
.net × 409
socks × 369
reactjs × 356
linux × 349
windows × 338