[EMAIL PROTECTED] How to rewrite background tag using proxy_html module

2006-01-16 Thread senthil kumar
Hi,I am using proxy_html module to rewrite the my html page urlhtml source td>I configured rules belowPoxyHTMLURLMap ^images/(.*)$ http://127.0.0.1/agent/images/$1 RXiProxyHTMLURLMap (.*) http:

[EMAIL PROTECTED] IndexIgnore is Ignored With Multiple Slashses

2006-01-16 Thread David Wolever
I have noticed that mod_autoindex ignores the IndexIgnoredirective if there is more than one slash after thedomain name.  For example:http://wolever.net/autoindex/ http://wolever.net//autoindex/The htaccess file is included in the directory list.This seems to affect directories recursively, but the

[EMAIL PROTECTED] error with a validation list

2006-01-16 Thread enediel gonzalez
Hello I have apache2 in debian sarge, with a site that contains a .htaccess file with the following configuration AuthName "Dev access" AuthType Basic AuthUserFile /usr/local/htpasswd.users require valid-user /usr/local/htpasswd.users contains a set of users created by htpasswd command, the p

[EMAIL PROTECTED] mod_proxy_html problem

2006-01-16 Thread Fay, Michael
I have searched the archives and haven't seen anything on this problem so...   I'm trying to compile mod_proxy_html on Solaris 9 with apache 2 apxs. I'm getting the following error:   /home/mfay % sudo /usr/local/apache2/bin/apxs -c -I/usr/include/libxml2 -i mod_proxy_html.c /usr/local

[EMAIL PROTECTED] DNS Reload

2006-01-16 Thread Muhammad Rizwan
Hello Is it require to reload DNS zone file of domain, if i change or update that DNS file. Thanks! - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for mo

RE: [EMAIL PROTECTED] ProxyPass does not work withhostnamesonlyIP's.(mod_proxyApache 1.3)

2006-01-16 Thread bsdsec
Thanks for both your time and help! Joshua you were right. I reloaded the server without chroot and it worked perfectly. Must be chroot blocking DNS resolution... At least I know where the problem lies. Thanks! Quoting Axel-Stéphane SMORGRAV <[EMAIL PROTECTED]>: I think Joshua's advice was p

RE: [EMAIL PROTECTED] ProxyPass does not work withhostnamesonlyIP's.(mod_proxyApache 1.3)

2006-01-16 Thread Axel-Stéphane SMORGRAV
I think Joshua's advice was pretty sound. Somebody on an OpenBSD list may have run into this problem previously, and he was certainly right about the chroot stuff... Before closing the subject you could look into the /var/www/etc directory and see if you find a resolv.conf file, and if not you

RE: [EMAIL PROTECTED] ProxyPass does not work with hostnamesonlyIP's.(mod_proxyApache 1.3)

2006-01-16 Thread bsdsec
I cleared all my logs and restarted the server. Tried accessing the page twice with same error. It appears the requests never reach the backend server. Here are the full contents of my logs. proxy: access_log --- talk.foo.org 10.5.5.50 - - [17/Jan/2006:00:25:0

Re: [EMAIL PROTECTED] ProxyPass does not work with hostnames only IP's. (mod_proxy Apache 1.3)

2006-01-16 Thread Joshua Slive
On 1/16/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi! > > I'm using OpenBSD 3.8 default install with mod_proxy enabled. I use > ProxyPass in virtual host directives with success. Example: In addition to the ideas that others have provided, note that openbsd does not use a "standard" apach

RE: [EMAIL PROTECTED] ProxyPass does not work with hostnamesonlyIP's.(mod_proxyApache 1.3)

2006-01-16 Thread Axel-Stéphane SMORGRAV
Well, it seems to me like that request worked just fine. No DNS lookup problem here. Does the request actually reach the backend server (intranet.foo.org) ? Could you share the relevant parts of your access and error logs +/- 30 seconds? -ascs -Original Message- From: [EMAIL PROTECTED]

RE: [EMAIL PROTECTED] ProxyPass does not work with hostnames onlyIP's.(mod_proxyApache 1.3)

2006-01-16 Thread bsdsec
Does that rewrite rule do exactly the same as ProxyPass? Anyway, same error page produced. Here is the rewrite_log: 10.5.5.50 - - [16/Jan/2006:23:53:23 +1030] [talk.boehj.net/sid#43ad8018][rid#417 0f060/initial] (2) init rewrite engine with requested uri / 10.5.5.50 - - [16/Jan/2006:23:53:23 +103

RE: [EMAIL PROTECTED] ProxyPass does not work with hostnames onlyIP's.(mod_proxyApache 1.3)

2006-01-16 Thread Axel-Stéphane SMORGRAV
Debug-level logs do not help much for debugging problems within mod_proxy. Try replacing the ProxyPass with the equivalent RewriteRule. RewriteLog log/rewrite_log RewriteLogLevel 3 RewriteEngine On RewriteRule ^(/.*)$ http://intranet.foo.org$1 [P,L] ProxyPassReverse / http://intranet.foo.org/ Y

RE: [EMAIL PROTECTED] ProxyPass does not work with hostnames onlyIP's. (mod_proxyApache 1.3)

2006-01-16 Thread bsdsec
Hey, thanks for your help. I tried ping, nslookup which both work. I even tried lynx and was able to bring up the page directly. I set LogLevel to "debug" and had a look in my error.log: [Mon Jan 16 23:28:23 2006] [notice] Apache/1.3.29 (Unix) mod_ssl/2.8.16 OpenSSL/ 0.9.7g configured -- resumin

RE: [EMAIL PROTECTED] ProxyPass does not work with hostnames only IP's. (mod_proxyApache 1.3)

2006-01-16 Thread bsdsec
Sorry I forgot to mention, OpenBSD comes with Apache 1.3 by default. I'm using Apache 1.3 Quoting Axel-Stéphane SMORGRAV <[EMAIL PROTECTED]>: I will assume that you are using Apache 2.0 or newer. In that case, in addition to mod_proxy, you need to include the mod_proxy_http module. -ascs ---

RE: [EMAIL PROTECTED] ProxyPass does not work with hostnames only IP's. (mod_proxyApache 1.3)

2006-01-16 Thread Axel-Stéphane SMORGRAV
I will assume that you are using Apache 2.0 or newer. In that case, in addition to mod_proxy, you need to include the mod_proxy_http module. -ascs -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, January 16, 2006 1:41 PM To: users@httpd.apache.org Subj

[EMAIL PROTECTED] ProxyPass does not work with hostnames only IP's. (mod_proxy Apache 1.3)

2006-01-16 Thread bsdsec
Hi! I'm using OpenBSD 3.8 default install with mod_proxy enabled. I use ProxyPass in virtual host directives with success. Example: ServerName www.foo.org ProxyPass / http://172.16.0.5/ ProxyPassReverse / http://172.16.0.5/ Order deny,allow Allow from all ...whi