Device or program that stands between two or more interconnected programs/devices
0
votes
0answers
2 views
Setting a proxy for an nginx upstream server
Is it possible for an upstream directive to specify an HTTP proxy to route these requests through? Something along the lines of:
upstream external {
server example.com;
proxy localhost:3128;
...
1
vote
1answer
22 views
Squid Proxy Splash Page based on Subnet
I am trying to use the Splash page feature that squid has, but I am trying to have it used only on certain subnet. I cannot figure out a way to use two ACLs to do this.
I have the following in my ...
-1
votes
0answers
16 views
ssl vhost proxy caching accelerator - or - ssl vhost reverse proxy mitm
I am building a reverse proxy to connect origin servers offering https. Via DNS End user connects to proxy accelerator and is authenticated via ldap and then sent directly to remote origin site (vhost ...
-1
votes
1answer
16 views
Allow network connection to a specifc app
I am developing a application for mobile (iPhone and Android) maps based for a company. The company has deployed a wifi network to allow, by subscribing (paying), internet access.
The idea of the ...
0
votes
0answers
18 views
Proxying large POST requests and sending an early HTTP response to client in Nginx?
I'm looking to find a way to offload the burden of uploading a big file from a user's browser to a proxy server in the same office, which can then handle the slow part of the upload (over the ...
0
votes
1answer
27 views
VPN laptop as proxy gateway for Intranet computers truss bridge/bypass
I have a Windows 7 Enterprise VPN laptop to access my client's VPN network. During VPN session the laptop can not accept any request from my Intranet even if I open any door using Windows Firewall ...
0
votes
1answer
20 views
Setting up a transparent proxy for a database
Currently my setup is as follows :-
Database client/library <---------------------> Database
I'd like to have the following :-
Database client/library <---> Proxy <-------------> Database
...
0
votes
0answers
42 views
Connecting to Mac on iPad via local network
For my business, I have a product that is built with a Mac Mini running things at the core. On this Mac Mini, I have installed Apache and PHP to serve dynamic web pages locally. Users access these ...
1
vote
0answers
21 views
How to force outgoing requests from webserver/PHP through squid proxy on same machine?
I have a Debian Squeeze VPS configured as an nginx web server. For security reasons I have blocked all outgoing connections except those to the Debian update servers (this stops bad scripts from ...
3
votes
1answer
50 views
Use uWSGI as a proxy server
Question:
Is there a way to use uWSGI as a proxy server?
More about the system:
6 load-balanced nginix/uWSGI servers
Python
Requirements:
Set up a few proxy servers that can:
Accept requests ...
0
votes
1answer
31 views
Cisco route HTTP / HTTPS to proxy server
Given a Cisco router, is it possible to route all HTTP and HTTPS traffic to a proxy server for filtering, and allow the proxy server to send the filtered traffic back?
1
vote
0answers
17 views
How to set up squid3 to respond with cache if back end server is down
I have a squid3 proxy set up at the moment as a transparent proxy. i am using the following in my config:
http_port 3128 transparent
acl localnet src 10.234.255.68/24
acl localhost src ...
1
vote
4answers
124 views
httpd: how to dynamically delay request forwarding to proxy?
I have Apache httpd (2.2.22) configured as reverse proxy.
There is a situation in which I need to take my web server (the receiver of the proxied requests) offline for a few milliseconds. During this ...
0
votes
0answers
20 views
Apache2 mod_proxy modifies content-type for some reason
I am using a local proxy using apache2 to do some development work (OSX 10.8):
SSLProxyEngine on
ProxyPass /app https://my.server.org/app
ProxyPass /web https://my.server.org/web
Everything works ...
0
votes
0answers
23 views
Squid Redirect/Aliasing Howto
I tried redirect_program option in squid to rewrite a POST request URL.
But it is coming as a GET request after rewrite.
Is there any option in squid to alias a URL , like http://abc.com/ can be ...