Tell me more ×
IT Security Stack Exchange is a question and answer site for IT security professionals. It's 100% free, no registration required.

I have read many explanations on reverse proxy I still don't understand the interest. Could someone really explains in plain english

share|improve this question
The answer below is a reasonable description of a reverse proxy, but this question is still offtopic here. Please read the FAQ for guidance as to what is on topic. – Rory Alsop Jun 20 '12 at 7:14
Why is it offtopic ? My question was of course interest of reverse proxy for SECURITY ! – user310291 Jun 20 '12 at 19:37
What are you trying to ask? Why people use one? What does it offer? If so, it is pretty much a duplicate of this: security.stackexchange.com/q/9465/485 – Rory Alsop Jun 20 '12 at 20:27

closed as off topic by Rory Alsop Jun 20 '12 at 7:12

Questions on IT Security Stack Exchange are expected to relate to IT security within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 2 down vote accepted

A reverse proxy is a proxy that retrieves data requested from a client from one or many servers. In many cases these are used for load balancing.

They might be also used when there are many web servers and a single PP address, the reverse proxy would receive the requests to port 80 and forward them to the servers that might be listening on different ports on the same machine (or port 80 on another machine) and then forward the response back to the user.

Also I've used a reverse proxy so I can use Apache's authentication / rewrite modules in front of another insecure standalone application that serves pages by itself.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.