>    NameVirtualHost 192.168.1.158
>
>    <VirtualHost 192.168.1.158>
>         ServerName original-url.blinky
>         ProxyPass / http://localhost:8080/

Don't forget the ProxyPassReverse

> [Second Apache]
>    NameVirtualHost 192.168.1.158
>
>    <VirtualHost 192.168.1.158>

localhost != 192.168.1.158, so your request never reaches the second Apache.

Second Apache should have:

NameVirtualHost *:8080

<VirtualHost *:8080>
>         DocumentRoot /onboard_it/test-website
>         ServerName original-url.blinky
>    </VirtualHost>

Joost


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to