reverse-proxy

Reverse Proxy from nginx won't run. Sites are normal.

There's some problem with my nginx. At first, starting is OK, surfing through the proxy is fast enough. But after a while, 5 -> 10 visit later, the proxy become slower and slower. Until it stop working. Even if i try to stop the nginx using "-s stop", double check if there are any nginx.exe running, and restart nginx. It's still not work...

Ionics Isapi Rewrite Filter fail on post?

http://iirf.codeplex.com I am using Ionics Isapi to for redirect. But for some reason, I got problem setting it up. In every post I got a 404 error from IIS. This is not an application problem since the application work just fine with the same procedure. Could anyone tell why HTTP POST is not working with this filter? Thnank you very...

REST API caching, should I use a Reverse proxy or memcache(d)?

I have a REST API where I would like to cache the JSON response of the index (GET /foo) and the read actions (GET /foo/1) to significantly increase the performance. When there is a POST or a PUT on a resource the cache entries for the index and read results need to be expired, so no old content is served. Is this a scenario that's best ...

Is there any java ssl tunel / reverse proxy appliaction which can install itself as a windows service?

I think that everything is in the title. ps. I'm looking for something simple, without tomcat like huge set of configuration xml's. ps2. open source regards p. ...

Cross domain javascript form filling, reverse proxy

Hi, I need a javascript form filler that can bypass the 'same origin policy' most modern browsers implement. I made a script that opens the desired website/form in a new browser. With the handler, returned by the window.open method, I want to retrieve the inputs with theWindowHandler.document.getElementById('inputx') and fill them (acc...

"Padding is invalid and cannot be removed." error with a twist...

I'm getting the following error in our QA environment but only through the IIS7 reverse proxy. If I hit the application server directly it works fine. In our DEV environment it works fine through the proxy or directly. I'm not really sure where to go with this, any ideas? Server Error in '/' Application. Padding is invalid and cannot...

.Net web application behind a WebSeal reverse proxy

We are currently designing a solution that will run as a .Net Web application behind a WebSeal reverse proxy. I have seen some comments on the net where people have had various problems with this, for example rewriting of viewstate. Question is: Has anyone implemented this combination of techologies and got it to work? ...

Setting up Apache Virtual Hosts and ProxyPass

I am trying to set up Virtual Hosts on my WAMPSERVER 2.0i installation. Currently it looks like that: http://domain/main http://domain/sub1 http://domain/sub2 I need to set it up so that 1) accessing http://domain/ would redirect to http://domain/main, but 2) http://domain/sub1 and http://domain/sub2 remain working as they are. When...

Why would it be important that a content delivery network uses a "reverse caching proxy"?

I was reading a description of a project on Github that is a Python-based content delivery network. Why is it important that it uses a "reverse caching proxy" - and what does that mean in this context? ...

Reverse proxy not keeping the original domain name

Hello All, I want to do something like this: Domain1 = www.abc.com Domain 2 = www.xyz.com When someone goes to www.abc.com it should go to www.xyz.com/directory/1 I have this configuration in my apache 2.2 ( yes it has mod_proxy ) <VirtualHost *:80> ServerName www.abc.com ProxyRequests Off ProxyPass / http://www.xyz.com...

Implementing a reverse proxy in C#

Here's what I want to do. I have a program that many client devices communicate with (hundreds). Unfortunately, sometimes when I add new features, it requires me to make breaking changes that affect these clients. So typically we have to update the clients and the server at the same time. So I had an idea in which I will just run eve...

http/proxy caching with memcached

What's the general best practice to deal with something like this.. ##Post controller def show @post = get_from_memcache end ##show.html.erb <div><%= post.body%></div> <div><%= post.created_at%></div> <div><%= post.category%></div> <div><%= Post.favorites_count%></div> The get_from_memcache return a @post object from a cache that...

nginx reverse proxy

Hey guys, I'm trying to have /blog redirecting to blog.mysubdomain.com Here's the location part in my nginx conf : location /blog { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_redirect false; proxy_pass http://blog.letitcast.com;...

reverse proxy confusion

Currently I use nginx + passenger for serving my rails app. I have been doing some research on reverse proxies and a few names pop up (squid, varnish and nginx mostly). 1 - Now If I am using nginx as my web server can I stil use it as my reverse proxy? 2 - The general sense is that most sites use nginx for proxying static content and a...

How to protect a web server FROM a reverse proxy server.

I have a website "www.website.com". Recently I found out that somebody has set up a reverse proxy with an almost identical url "www.website1.com" in front of my website. I'm concerned of those users who came to my website through that reverse proxy. Their username and passwords might be logged when they login. Is there a way for me ...

What kind of Http proxy do I need?

So, I have a website that is served by 12 separate application servers without any shared cache. We use a third party webservice to implement a particular functionality in the app. However, the 3rd party doesn't want us to be calling them a lot lest it breaks their site. Hence I am thinking of keeping some kind of a proxy in between th...

nginx be both reverse proxy and web server

I currently use nginx with passenger to serve my rails app. considering including a caching reverse proxy to the equation. Can I use the same instance of nginx as a reverse proxy (running on port 80, serving static as well as e-tagged actions) as well or would I need a different instance of nginx or a totally different type of reverse pr...

How to configure reverse proxy/loadbalancer for custom routing

Hi! Suppose I have 3 webservers behind a reverse proxy/loadbalancer. Currently I use Apache 2 but don't mind switching. Those webservers are not equal. They have different sets of local data meaning that different kinds of requests will be handled more efficiently on specific webserver. I want to plug some custom routing logic into m...

Obtaining the form data, the user input in a simple web form using Squid proxy

Hi, There is a web application server. I need to inspect the content of a form before it is processed on the server. I need to obtain the user's response using Squid Proxy server. Out of the box Squid does not supply access to the POST, PUT or GET of the response, only the GET request. I need the setup in which Squid can get this...

Any idea on how to configure Apache reverse proxy to work with Plone, OS X Server 10.6 ?

Hi! I have the following setup: Internal server running Plone (not accessible directly from the Internet) External OS X Server 10.6 configure to act as a reverse proxy server, this server is connecting external users to my internal Plone server. What I want to do is to have a page in Plone with an tag like this: InternalServer2 is ...