OK - have eventually got my setup to work thanks to a combination of
suggestions from Chris, Joshua and Joost. FYI my final working
configuration is shown below
-- Server 1 (httpd.conf) ---
Listen 80
Port 80
ServerName blinky
NameVirtualHost 192.168.1.158
Oops - my bad. I was missing 'original-url.blinky' from the local
/etc/hosts file.
I now have:
ProxyPass / http://original-url.blinky:8080
but I still receive the second server's default 'htdocs' page rather
than the specified DocumentRoot /onboard_it/test-website
Nei
**
When it is requested from the 2.x server the Server Name is localhost
because of the
ProxyPass / http://LOCALHOST:8080
Try
ProxyPass / http://original-url.blinky:8080
Instead of the localhost Proxy.
Chris
-Original Message-
From: Neil Freeman [mailto:[EMAIL
Hi there,
I have a RedHat linux box with two Apache server setups up and running
(an Apache 1.x server and an Apache 2.x server). The Apache 1.x server
is set up to listen on Port 80 and the Apache 2.x server set up to
listen on port 8080.
What I would like is to have the URL 'http://original-