reverse-proxy

Redirecting https requests to two different weblogic servers using the Weblogic proxy and Apache2

I have a server serverA running a weblogic application App1, with base url /app1/ on port 7001, and another server serverB, running a weblogic application App2, with base url /app2/ on port 8001. Both servers run Solaris, Apache2 and Weblogic 9.2 (details changed, but these are representantive) In other words, app1 could be accessed on...

ASP.Net reverse proxy, what to do with external resources?

I'm currently working on a concept for a reverse proxy to basically relay responses and requests between the user and an otherwise invisible website. So basically the user goes to a site, let's say www.myproxyportal.com, where it is possible to access a website (in an iframe) in the webserver's intranet which isn't made public (for examp...

Using a proxy to access the Weblogic Administration server

We have set up where the Weblogic admin server is on port 9002, but all access to the system can only come on port 80. The application itself runs on some other ports, and I've successfully proxied the relevant URLs from port 80 to Weblogic using the Weblogic Apache proxy plugin. However, this doesn't work for the Weblogic Admin consol...

Rails' page caching vs. HTTP reverse proxy caches

I've been catching up with the Scaling Rails screencasts. In episode 11 which covers advanced HTTP caching (using reverse proxy caches such as Varnish and Squid etc.), they recommend only considering using a reverse proxy cache once you've already exhausted the possibilities of page, action and fragment caching within your Rails applicat...

IIRF reverse proxy problem

Hi everyone, We have a java application ( Atlassian Bamboo) running on port 8085 on Windows 2003. It is accessile as http: //bamboo:8085. I am trying to setup reverse proxy for IIS6 using IIRF so content is accessible via http: //bamboo. It seems that I set it ip correctly, and I can retrieve Status page. This is how my IIRF.ini ...

Is there a solution that lets Node.js act as an HTTP reverse proxy?

Our company has a project that right now uses nginx as a reverse proxy for serving static content and supporting comet connections. We use long polling connections to get rid of constant refresh requests and let users get updates immediately. Now, I know there is a lot of code already written for Node.js, but is there a solution that le...

Forwarding HTTP Request with Direct Server Return

I have servers spread across several data centers, each storing different files. I want users to be able to access the files on all servers through a single domain and have the individual servers return the files directly to the users. The following shows a simple example: 1) The user's browser requests http://www.example.com/files/fil...

Creating a Reverse Proxy using Jpcap

I need to create a program that receives HTTP request and forwards those requests to the web servers. I have successfully made this using only Java Sockets but the client needed the program to be implemented in Jpcap. I'd like to know if this is possible and what literature I should be reading for this project. This is what I have n...

CherryPy behind Nginx reverse-proxy POST requests corrupted/truncated

I have put my application using Cherrypy 3.1.2 behind Nginx configured as a reverse-proxy. All is working right for GET requests, but all POST requests return HTTP 400 - Malformed header. I traced into CherryPy WSGI-Server source code to see the request-handling code and found out that if for GET requests the first request line correctl...

How can I set up a proxy server to mirror an existing proxy server which has a web-based gateway?

So here's the deal: there is a proxy service which I access by appending a string to the domain. So for example, to access foo.com through the bar proxy, I go to foo.com.bar.com. I'm then directed to a web-based authentication form which offers me the chance to choose a domain, and then authenticate by certificate or by password. Afte...

Reverse Proxy dynamic webserver loading

Is there any way to dynamically load and unload webservers from a reverse proxy? For example let's say I have a cluster of 100 apache servers and I want to patch the servers. I would like the have a setup where I have a pool of updated servers and a pool of "being updated" servers. I would like the reverse proxy be aware of what is bei...

How to log the request mod_proxy makes through a reverse proxy

I'm can't figure out why I cannot get the reverse proxy for a particular (remote) website to work. (nb: the reverse proxy works for a number of other websites). I can access static files on that website through the proxy, but for some reason the homepage and other pages give a 404, "the page that you were looking for does not exist" Wh...

Route web requests to different servers based on subdomain

First of all, I've seen this: http://stackoverflow.com/questions/589669/how-to-redirect-different-sub-domain-requests-to-different-servers But my problem is different. I have a platform where a user can create a new website using a submdomain. There will be thousands of these, eg abc.mydomain.com, def.mydomain.com . Hopefully if we ar...

MS ISA 2006 Reverse Proxy Server or ??

I have a Sharepoint install that will host an internet site. I read I should use a reverse proxy for security reasons, and not just use a firewall. If so, is MS ISA 2006 a good product, is there a comparable product that I should consider? ...

Reverse proxy Google App Engine and Google Accounts authentication.

I have requirements to run a "walled garden" wifi portal page that should be hosted on App Engine. Unfortunately, the captive portal software can only whitelist by IP, requiring that we setup a nginx server that reverse proxies to appname.appspot.com. The app also has authentication via Google Accounts. What is the best way to handle ...

reverse proxy to any destination

Is there a way to reverse proxy to any destination based on the given URL? For example, any request like //jboss-server/A should be redirected to http://A Tried with ProxyPass (apache webserver) and it doesn't seem to work. ...

Proxy / ServiceBus / Reverse SSH

Trying to figure out the best way to easily connect a bunch of client machines running WCF service to a LAMP server on a wide area network.... Currently just set up set up each client with DynDNS, and port forwarding at the router... Absolutely not the best situation for deployment. Ideally would like to have a simple program they run ...

Can nginx be used as a reverse proxy for a backend websocket server?

We're working on a Ruby on Rails app that needs to take advantage of html5 websockets. At the moment, we have two separate "servers" so to speak: our main app running on nginx+passenger, and a separate server using Pratik Naik's Cramp framework (which is running on Thin) to handle the websocket connections. Ideally, when it comes time f...

Can I turn off an Apache Directive then turn it on in an include?

I have a VirtualHost block that includes common configuration items, one directive is ProxyPreserveHost. Can I "procedurally" turn off ProxyPreserveHost for a Rewrite directive then have the include turn it back on? For example: <VirtualHost *:80> ServerName www.blah.com ... ... ProxyPreserveHost off RewriteRule /somepath http://otherh...

How to proxyreverse to local urls using Apache

Hi! I have two subdomains: test.domain.com prod.domain.com I have one server with to urls (two apps): localhost:8080/app1/ localhost:8090/app2/ The two subdomains are redirected to the server i got. Using Apache, how do i ProxyPassReverse so that this can happen: If test.domain.com -> localhost:8080/app1/ If prod.domain.com -> local...