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: Cannot proxypass to intranet server, Please help. |
|
Author |
|
visuel
Joined: 11 Jun 2011 Posts: 1
|
Posted: Sat 11 Jun '11 10:54 Post subject: Cannot proxypass to intranet server, Please help. |
|
|
Hi All,
I have this satellite receiver with a web server on 10.0.1.54:80.
It works fine on the intranet!
for example: http://10.0.1.54/cgi-bin/Home.sh works fine!
I would like to make it available on the internet, so I made a virtual host for it on my apache webserver:
Code: |
<VirtualHost *:80>
ServerAdmin webmaster@visuel.nl
DocumentRoot "C:\xampp\htdocs\sat"
ServerName sat.home.visuel.nl
ProxyPass / http://10.0.1.54/
ProxyPassReverse / http://10.0.1.54/
ErrorLog "logs/sat.home.visuel.nl-error_log"
CustomLog "logs/sat.home.visuel.nl-access_log" common
</VirtualHost>
|
But now http://sat.home.viuel.nl/cgi-bin/Home.sh only shows the sourcecode of the Home.sh script in the browser.
And http://10.0.1.54/cgi-bin/Home.sh still works fine!
What should I change?
|
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Tue 14 Jun '11 16:58 Post subject: |
|
|
What exactly do you see? generated HTML source code? The sh source code? |
|
Back to top |
|
|
|
|
|
|