Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: apache reverse proxy problem |
|
Author |
|
velocity
Joined: 14 Apr 2010 Posts: 21
|
Posted: Fri 16 Apr '10 19:36 Post subject: apache reverse proxy problem |
|
|
Hi
I have a scenario.A domain www.mydomain.com
then there are 4 private computers on which applications are hosted at port 80.
So when some one from outside access the site it should look
as www.mydomain.com/site1
in apache2.conf where www.mydomain.com is hosted
I added
Code: |
ProxyPass /site1 http://192.168.0.2
ProxyReversePass /site1 http://192.168.0.2
|
is it correct ?
I am able to see www.mydomain.com/site1
but when some one logs in from internet to www.mydomain.com/site1
it is redirecting to www.mydomain.com and not taking to page where a successful login will go
in www.mydomain.com/site1
what should I check or do ? |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7373 Location: Germany, Next to Hamburg
|
Posted: Sat 17 Apr '10 11:19 Post subject: |
|
|
Is there any rewriting on the main server? |
|
Back to top |
|
velocity
Joined: 14 Apr 2010 Posts: 21
|
|
Back to top |
|
velocity
Joined: 14 Apr 2010 Posts: 21
|
Posted: Sat 17 Apr '10 19:25 Post subject: |
|
|
Hi yes you are right.Even then now I am posting a solution since by now I have solved the problem.
http://swik.net/MySQL/Planet+MySQL/Operating+a+Drupal+Site+behind+a+Reverse+Proxy+Server+(Apache)/dcslr
I am posting so that if some one else faces the same problem they may get a solution.Which is mentioned on the above link you can go there directly and read it.
Code: |
When you install drupal on a server which is behind apache reverse proxy you need to tell that drupal installation about the presence of reverse proxy in your nework.
That is the core of the problem.
To achieve this you need to do do following
in your drupal installation folder go to sites/default/settings.php
and change the following
$base_url="http://www.mydomain.com/;
then
$cookie_domain = 'proxyserver.yourdomain.com';
if above both are same then place them same values
then
uncomment
$conf = array(
then
uncomment
'reverse_proxy' => TRUE,
then
'reverse_proxy_addresses' => array('192.168.0.1',),
replace it by IP of your apache reverse proxy
and uncomment below it
);
|
Hopefully it should work.
Keywords to search for this are if you are using drupal
"drupal behind apache reverse proxy"
You can get same problem if you do not use drupal the thing is any web server running behind a proxy needs to know how to handle requests which are forwarded by proxy.
Some one if comes across same situation do reply here make a blog etc it will help others. |
|
Back to top |
|
|
|
|
|
|