I am running Apache on my Pi and have it secured to require a username and password to the site. On the site I am displaying an IP camera stream. A snippet of the code is below
<li><img class="active" src=http://external URL for website:9000/GetData.cgi/?resolution=960X720 title "Wireless" ................blah....blah.
This causes me to have to expose the camera's administration page to the internet and password protect it. This is inconvenient as I already have a password to the Apache page and then have to enter a username and password to open the camera stream.
What I am trying to accomplish is being able to code the URL above in the site as src="http://internal IP address:9000/GetData.cgi/?resolution=960x720 making everything internal so I can use anonymous access to the Camera.
I have read many articles on how to use mod_proxy to accomplish this. The issue that I am having is that they all reference httpd.conf and my Apache install does not use this. What configuration changes do I need to make to make this work and in what files do the changes go in?