Top "Proxy" questions

A proxy is a device or program that stands between two or more interconnected programs or devices.

How to configure a HTTP proxy for svn

I want to check code from the repository http://code.sixapart.com/svn/perlbal/ . I can only access the the …

svn proxy
WebSockets and Apache proxy : how to configure mod_proxy_wstunnel?

I have : Apache (v2.4) on port 80 of my server for www.domain1.com, with mod_proxy and mod_proxy_wstunnel …

node.js apache proxy websocket socket.io
How to see the proxy settings on windows?

Our work laptops are configured to use proxy to access external sites and I don't have access to see the …

windows google-chrome proxy command-prompt
Running Selenium Webdriver with a proxy in Python

I am trying to run a Selenium Webdriver script in Python to do some basic tasks. I can get the …

python selenium proxy selenium-webdriver selenium-ide
How to make python Requests work via socks proxy

I'm using the great Requests library in my Python script: import requests r = requests.get("some-site.com") print r.text …

python proxy socks python-requests
SSL Proxy/Charles and Android trouble

I want to test Https calls from android device using Charles proxy tool. I need to see the raw request/…

android proxy charles-proxy
How to preserve request url with nginx proxy_pass

I was trying to use Thin app server and had one issue. When nginx proxies the request to Thin (or …

ruby proxy nginx thin unicorn
Proxy Basic Authentication in C#: HTTP 407 error

I am working with a proxy that requires authentication, i.e., in a browser if I try to open a …

c# proxy httpwebrequest basic-authentication http-status-code-407
How should I set the default proxy to use default credentials?

The following code works for me: var webProxy = WebProxy.GetDefaultProxy(); webProxy.UseDefaultCredentials = true; WebRequest.DefaultWebProxy = webProxy; Unfortunately, WebProxy.GetDefaultProxy() is …

.net proxy
Proxy with urllib2

I open urls with: site = urllib2.urlopen('http://google.com') And what I want to do is connect the same …

python proxy urllib2