Questions tagged [reverse-proxy]

A reverse proxy server usually refers to an HTTP accelerator or load-balancer which proxies requests on behalf of the actual clients to one or more backend HTTP servers.

A reverse proxy server usually refers to an proxy server which proxies requests on behalf of the actual clients to one or more backend HTTP servers.

It can be used as HTTP accelerator, or load-balancer, or to give the access to LAN internal web-services to Internet users.

Wikipedia: Reverse proxy

Apache HTTP as forward and reverse proxies

5119 questions
2
votes
0 answers

Nginx 1.4.1 + Socket.io couldn't work. Handshake authorized but not working

I am using nginx 1.4.1 and I am trying to configure it with to work with socket.io websockets. I think I have done it correctly since I see a 'handshake authorized', but after a few seconds socket.io starts using xhr-polling, jsonp-polling and…
unclelim12
  • 603
  • 1
  • 8
  • 22
2
votes
1 answer

Dynamic URL Dispatch with Twisted ReverseProxyResource

I'm new to the twisted library and I'm trying to write a simple reverse proxy with a particular feature. For most URLs the server should act as a reverse proxy, but for URLs that match a regex it should serve them itself. I have read the twisted…
d4nt
  • 15,475
  • 9
  • 42
  • 51
2
votes
1 answer

Apache Reverse Proxy and Google Authenticator as 2-Factor Auth

I have searched the hole Internet but cannot find any good answer. Scenario: I have a Intranet Website that should accessible from the Internet. I have add a Linux / Apache based Reverse Proxy in front of it into a dmz. Target: Logon to the…
2
votes
1 answer

Apache reverse proxy authentication via PHP

I have two apache servers set up. One is public facing, the other is behind a firewall. The one behind the firewall is used to serve up content (vids, pics, etc). I've set up a reverse proxy so that any requests to http://mysite.com/content/…
KevMo
  • 5,590
  • 13
  • 57
  • 70
2
votes
1 answer

Node.js Reverse Proxy/Load Balancer

I am checking node-http-proxy and nodejs-proxy to build a DIY reverse proxy/load balancer in Node.js. After coding a small version, I setup 2 WEBrick servers for the same Rails app so I could load balance (round robin) between them. However each…
davidcunha
  • 230
  • 3
  • 10
2
votes
1 answer

Magento stores in subfolders using nginx proxy_pass

I'm currently trying to set up a Magento installation with separate store views for localization. However, I'm not sure the way I've currently implemented URL handling in Nginx is the cleanest solution. The URL structure is: http://www.example.com/…
bclune
  • 129
  • 6
2
votes
1 answer

nginx -> Tomcat with folder path - too many redirects

I'm trying to use nginx as a reverse proxy for two Tomcat Instances, each in their own VM. The problem is: when i start to add a folder-path to the proxy_pass argument, i get a 310 error: Too many redirects. What am i doing wrong? Any advice is…
Patrick Werner
  • 1,106
  • 9
  • 24
2
votes
2 answers

Rewrite URL in Nginx proxy + apache setup

I'm working in python/django with apache and a Nginx proxy. I need to transform some URLs like these: www.mydomain.com/client_A/ www.mydomain.com/client_B/ to www.mydomain.com/clients/1/ www.mydomain.com/clients/2/ I would do a rewrite in the Nginx…
2
votes
1 answer

navigation in video stream, reverse proxy in golang

I'm testing a reverse proxy in go. Mainly for playing videos though underlying nginx and streaming videos from other backend servers. Problem is when navigating through video. For example when playing with vlc through proxy - video starts normally,…
user1579228
  • 103
  • 1
  • 9
2
votes
1 answer

Reverse Proxy with Apache2 don't work

I'm using Apache/2.2.8 (Ubuntu) and have a problem. There is a file /etc/apache2/sites-available/backuppc with the following: ProxyRequests Off Order deny,allow Allow from all ProxyPass /backuppc…
Ice
  • 1,162
  • 3
  • 14
  • 27
2
votes
0 answers

nginx does not starting with multiple nodejs apps

i have this config in sites-enabled/default upstream domainone.com.ar { server 127.0.0.1:9000; } server { listen 80; server_name www.domainone.com.ar; rewrite ^/(.*) http://domainone.com.ar/$1 permanent; } server { listen 80; listen…
andrescabana86
  • 1,778
  • 8
  • 30
  • 56
2
votes
1 answer

Two servers with mod_proxy, second server host is local ip and shows /proxy/ in url?

I am having some issues in regards to sessions with a second server I am running on my home network. I do this as a hobby and to develop new applications before they officially go live. I have a domain pointing to my ip and resolves successfully to…
Uberswe
  • 1,038
  • 2
  • 16
  • 36
2
votes
5 answers

While starting Squid on "cmd" it gives a "System error 1067 has occurred"

I am trying to use Squid's (its 2.7STABLE8 version) reverse proxy service on Windows 7. When I try to start squid from "cmd" (as administrator) I get an error message such as; "The Squid service could not be started A system error has…
Ekin
  • 407
  • 1
  • 6
  • 17
2
votes
3 answers

nginx Expires header and reverse proxy not working

I am trying to configure an Expires header for static files on nginx (0.7.67). The static files are served from a Golang reverse proxy: location /rev/ { proxy_pass http://localhost:8910/; proxy_redirect off; proxy_set_header Host …
Kiril
  • 6,009
  • 13
  • 57
  • 77
2
votes
2 answers

Programmatically accessing a resource hosted behind WebSEAL reverse proxy

We have an iPad app displaying contents from drupal site (serving just json files). our IT dept placed a SSO in front of the drupal site. WebSEAL is used for implementing SSO. so when we access the drupal site from the browser we are redirected…
Mahes
  • 3,938
  • 1
  • 34
  • 39