Re: [users@httpd] ProxyPass question

2012-06-14 Thread Janos Dohanics
On Wed, 13 Jun 2012 17:20:59 -0500 Daniel Ruggeri drugg...@primary.net wrote: On 6/13/2012 3:52 PM, Janos Dohanics wrote: Thanks Anne, this was what I needed. However, I got a new problem: I also want to protect the / directory with .htaccess, and that works fine. I assumed that this

[users@httpd] ProxyPass question

2012-06-13 Thread Janos Dohanics
Hello List, I need to proxy a DVR's built-in web server. I have this in httpd-ssl.conf: ProxyPass /Camera/ http://10.10.10.249:7000/ ProxyPassReverse /Camera/ http://10.10.10.249:7000/ The DVR's web page gets displayed - but not all of it. Here is the snippet of the log file: 141.158.70.143 -

Re: [users@httpd] ProxyPass question

2012-06-13 Thread Anne Blankert
If I understand your question correctly, think you need to configure: ProxyPass /Camera/ http://10.10.10.249:7000/ ProxyPass /discover.cgi http://10.10.10.249:7000/discover.cgi The ProxyPassReverse lines work only for redirects. /discover.cgi is not a redirect, but probably inside the content

Re: [users@httpd] ProxyPass question

2012-06-13 Thread Janos Dohanics
On Wed, 13 Jun 2012 13:20:50 +0200 Anne Blankert anne.blank...@geodan.nl wrote: If I understand your question correctly, think you need to configure: ProxyPass /Camera/ http://10.10.10.249:7000/ ProxyPass /discover.cgi http://10.10.10.249:7000/discover.cgi The ProxyPassReverse lines

Re: [users@httpd] ProxyPass question

2012-06-13 Thread Daniel Ruggeri
On 6/13/2012 3:52 PM, Janos Dohanics wrote: Thanks Anne, this was what I needed. However, I got a new problem: I also want to protect the / directory with .htaccess, and that works fine. I assumed that this will also protect /Camera - evidently, not. Is there a way to force authentication