Device or program that stands between two or more interconnected programs/devices
Questions tagged [proxy]
3307 questions
13
votes
3 answers
Help me understand how to use ProxyPass
UPDATE: I added a revised question after playing around with it two answers below.
Hi there,
If you're reading this you're probably familiar with Apache's mod_proxy and its ProxyPass function. Like many others, I have the issue of having an…
Bartek
13
votes
1 answer
Simple apache proxy not working
I just wanted to test a reverse proxy simple setup, redirecting every request just to google. Anyhow it does not work! Trying to browse on localhost, I just get the apache "it works" default page, but not proxying.
Of course I loaded the modules…

membersound
- 275
- 1
- 5
- 13
13
votes
4 answers
Using Supermicro IPMI behind a Proxy?
This is a SuperMicro server with a X8DT3 motherboard which contains an On-board IPMI BMC. In this case, the BMC is a Winbond WPCM450). I believe many Dell servers use this a similar BMC model.
A common practice with IPMI is to isolated it to a…

Stefan Lasiewski
- 23,667
- 41
- 132
- 186
13
votes
5 answers
What is a good SQUID Logs Analyzer?
Can anyone recommend me a good tool for analyzing squid logs ?
I'm currently using SARG. Is there something better?
I need to easily see what sites were visited/denied, when and by whom.
There is a list of squid analyzers. Some of them seem to be…

Jindrich
- 4,968
- 8
- 30
- 42
12
votes
1 answer
Simple reverse proxy with Traefik
I'm currently using Apache as proxy for my LXD containers, using this kind of settings:
ServerName example.com
ProxyRequests off
ProxyPass / http://10.0.0.142/ retry=0
ProxyPassReverse / http://10.0.0.142/
…

lepe
- 469
- 2
- 6
- 25
12
votes
3 answers
How to proxy multiple tcp streams on one port with nginx
With nginx http directive, you can have multiple servers on the same port with different names:
server {
listen 80;
server_name server1.example.com;
location / {
proxy_pass http://server1.example.com;
}
}
server {
…

joels
- 261
- 1
- 3
- 7
12
votes
4 answers
How to debug pac file in chrome without alert function?
I recently experienced a problem with a new pac file with chrome, (same pac file with IE and Firefox works).
I supposed that my problem is due to myIpAddress() function, see this post, which do not return my main ip address.
I would like to make…

Antoine
- 305
- 1
- 3
- 11
12
votes
1 answer
Proxy mail to different smtp server with Postfix
How can I forward (or proxy) mail to different smtp servers depending on the To address?
I've got one machine with an SMTP (postfix) server listening on port 25. I want to use Lamson (http://lamsonproject.org/) to handle some incoming mail and some…

Mattias
- 285
- 1
- 2
- 6
12
votes
1 answer
How to avoid restarting Apache proxy when you restart CouchDB
I'm running a localhost CouchDB instance using CouchDBX on my Mac, proxied behind Apache 2 using the ProxyPass directive:
ServerName playlick # points to localhost in /etc/hosts
DocumentRoot "/Users/james/Sites/playlick"
…

James Wheare
- 223
- 2
- 5
12
votes
1 answer
Apache httpd error "proxy: ap_get_scoreboard_lb" with ProxyPass
I set up apache to proxy for tomcat but I am getting the following error when I target the page. I sometimes get a blank page or a 503:
[Error]
[Mon Dec 03 04:58:16 2012] [error] proxy: ap_get_scoreboard_lb(2) failed in child 29611 for worker…

Dark Star1
- 1,385
- 7
- 22
- 37
12
votes
1 answer
haproxy: retain existing sessions under high load, serve '503' to new arrivals
Trying to do what it says in the title: retain existing sessions under high load, and serve 503-message to newly arrived visitors.
Problem: it works, but the sessions don't last beyond about 90 seconds.
Current results have me wondering if there's…

Apenootje
- 123
- 5
12
votes
2 answers
How can I setup a SOCKS proxy over ssh with password based authentication on CentOS?
I know how to setup a simple proxy using ssh -D ,but I want to use username and password based authentication for this case. Is there any way?

davyzhang
- 293
- 2
- 3
- 6
12
votes
2 answers
Akward delay to connect Apache's proxy request to a node.js App
In my Ubuntu Server 10.04 I'm running an example node.js app:
var http = require("http");
function onRequest(request, response) {
console.log("Request received.");
response.writeHead(200, {"Content-Type": "text/html"});
…

Herman Junge
- 223
- 1
- 2
- 7
12
votes
10 answers
Block Facebook for selected users
We have a few users here who are using Facebook during working hours and their productivity is through the floor, as a temporary measure I have remotely edited their hosts files to point facebook.com and its various subdomains to point to the…

Ben Gillam
- 407
- 4
- 11
12
votes
5 answers
PHP on Linux: How to make PHP use proxy settings to connect to internet?
my server is in a LAN and is connected to internet through a Proxy Server.
my PHP application (Drupal), should be able to check for updates through PHP codes. how can i set Proxy Settings for PHP so that it function properly?
Note: i know that i can…

Alexar
- 256
- 1
- 3
- 13