Re: [EMAIL PROTECTED] ProxyPass with exceptions

2006-09-21 Thread Richard de Vries
Sorry, should have been: ProxyPass http://192.168.1.1/cob ProxyPassReverse http://192.168.1.1/cob ProxyPass http://192.168.1.3/ ProxyPassReverse http://192.168.1.3/ --- Richard de Vries <[EMAIL PROTECTED]> wrote: > How about if you split your ProxyPass directives up > in > Locatio

Re: [EMAIL PROTECTED] ProxyPass with exceptions

2006-09-21 Thread Richard de Vries
How about if you split your ProxyPass directives up in Location Blocks. Does that make a difference? i.e. ProxyPass /cob http://192.168.1.1/cob ProxyPassReverse /cob http://192.168.1.1/cob ProxyPass / http://192.168.1.3/ ProxyPassReverse / http://192.168.1.3/ --- [EMAIL PROTECTED]

[EMAIL PROTECTED] Apache openLDAP crypt password problem

2006-09-21 Thread Jones Scott - sjones
I have been testing hooking Apache up to openLDAP.  No problems.  Then I tried to connect to our corporate open LDAP.  The passwords are stored with crypt method.   Is there some switch or setting for apache’s ldap module to do the crypt and get it to work.   Thanks *

Re: [EMAIL PROTECTED] Location directive in httpd.conf

2006-09-21 Thread Joshua Slive
On 9/21/06, sajid khan <[EMAIL PROTECTED]> wrote: We have 2 location directives, one for all the requests ( ... ) and one for specific url . We declare some variables using PerlSetVar inside those and read from the perl scripts. In Apache 1.3 , I am able to read the variable(decl using PerlSetV

[EMAIL PROTECTED] ProxyPass with exceptions

2006-09-21 Thread sniedermeyer
I'm trying to use the ProxyPass directive but am having mixed results on our Apache 2.2.2 reverse proxy server. Here is my config: ProxyPass /cob http://192.168.1.1/cob ProxyPassReverse /cob http://192.168.1.1/cob ProxyPass /web http://192.168.1.1/web ProxyPassReverse /web http://192.168.1.1/web

[EMAIL PROTECTED] Location directive in httpd.conf

2006-09-21 Thread sajid khan
We have 2 location directives, one for all the requests ( ... ) and one for specific url . We declare some variables using PerlSetVar inside those and read from the perl scripts. In Apache 1.3 , I am able to read the variable(decl using PerlSetVar ) inside , however in Apache 2.0, I am not able to

Re: [EMAIL PROTECTED] managing mass Apache Redirects

2006-09-21 Thread Joshua Slive
On 9/21/06, Julian C. Dunn <[EMAIL PROTECTED]> wrote: On Thu, 2006-09-21 at 10:59 -0400, Joshua Slive wrote: > On 9/21/06, Julian C. Dunn <[EMAIL PROTECTED]> wrote: > > Does anyone have any solutions for managing a huge number of Apache > > redirects in a manner external to Apache? What I am loo

Re: [EMAIL PROTECTED] managing mass Apache Redirects

2006-09-21 Thread Julian C. Dunn
On Thu, 2006-09-21 at 10:59 -0400, Joshua Slive wrote: > On 9/21/06, Julian C. Dunn <[EMAIL PROTECTED]> wrote: > > Does anyone have any solutions for managing a huge number of Apache > > redirects in a manner external to Apache? What I am looking to do is to > > store Redirect source and targets i

Re: [EMAIL PROTECTED] managing mass Apache Redirects

2006-09-21 Thread Joshua Slive
On 9/21/06, Julian C. Dunn <[EMAIL PROTECTED]> wrote: Does anyone have any solutions for managing a huge number of Apache redirects in a manner external to Apache? What I am looking to do is to store Redirect source and targets in some kind of DB. It's kind of like RewriteMap but I don't actually

Re: [EMAIL PROTECTED] proxypass ignore case issue

2006-09-21 Thread Nick Ascione
In my case the backend host is a IIS server. Any ideas? Rainer Perske wrote: -BEGIN PGP SIGNED MESSAGE- Nick Ascione schrieb am 2006-09-21: Thanks Rainer. The mod_speling works great. fine :-) However I have a new interesting problem In my vhost I

[EMAIL PROTECTED] managing mass Apache Redirects

2006-09-21 Thread Julian C. Dunn
Does anyone have any solutions for managing a huge number of Apache redirects in a manner external to Apache? What I am looking to do is to store Redirect source and targets in some kind of DB. It's kind of like RewriteMap but I don't actually want to use the key and values in future directives. I

Re: [EMAIL PROTECTED] Load Balancing with session count method

2006-09-21 Thread Steve Feehan
On Thu, Sep 21, 2006 at 02:32:15AM -0700, vadimsh wrote: > > Hi all , > > Is there any way to use balancing method based on session ? > > We need simple rule which look on session only and make sure that each > tomcat gets > equal number of session and ignore all other factors. > May be it's al

Re: [EMAIL PROTECTED] proxypass ignore case issue

2006-09-21 Thread Rainer Perske
-BEGIN PGP SIGNED MESSAGE- Nick Ascione schrieb am 2006-09-21: > Thanks Rainer. > The mod_speling works great. fine :-) > However I have a new interesting problem > In my vhost I have > proxypass /somedir /http://www.somedomain.com/somedir > proxypassreverse /somedir /http://www.so

Re: [EMAIL PROTECTED] apache php crash

2006-09-21 Thread Joshua Slive
On 9/20/06, Bobby Gontarski <[EMAIL PROTECTED]> wrote: Has someone already seen a solution to this apache - php crashing problem: [notice] Parent: child process exited with status 4294967295 -- Restarting. described http://bugs.php.net/bug.php?id=30405 What you are reporting is the symptom of a

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-21 Thread Ben
Hi Rob, Ok - well your sock is correct! I did have some issues with character sets, hence those lines. They may also be not relevant. CFLAGS="-DHAVE_MYSQL_H -I/usr/local/include/mysql/ -L/usr/local/lib/ mysql/" ./configure [ your configure details --] I am not sure, b

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-21 Thread Rob Sterenborg
On Thu, September 21, 2006 10:12, Ben wrote: > Hi Rob, > Just 'cos I got it working on one machine doesn't say so much - > thanks for having a go. > > It may be a good idea to get a tail on the mysql log ( hostname.err ) This is the complete MySQL error log. As it is a fresh install, there's not m

Re: [EMAIL PROTECTED] proxypass ignore case issue

2006-09-21 Thread Joshua Slive
On 9/21/06, Nick Ascione <[EMAIL PROTECTED]> wrote: Thanks Rainer. The mod_speling works great. However I have a new interesting problem In my vhost I have proxypass /somedir /http://www.somedomain.com/somedir proxypassreverse /somedir /http://www.somedomain.com/somedir The above works fine

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-21 Thread Rob Sterenborg
On Thu, September 21, 2006 07:44, Philip M. Gollucci wrote: >> I installed MySQL-5.0.24a from source into /usr/local, set it up (have >> it running), modified /etc/ld.so.conf and ran ldconfig. I downloaded >> httpd-2.2.3 and apr_dbd_myqsl.c again and applied your proposed changes to >> all those f

Re: [EMAIL PROTECTED] proxypass ignore case issue

2006-09-21 Thread Nick Ascione
Thanks Rainer. The mod_speling works great. However I have a new interesting problem In my vhost I have proxypass /somedir /http://www.somedomain.com/somedir proxypassreverse /somedir /http://www.somedomain.com/somedir The above works fine and mod_speling catches any weird way that somedir

[EMAIL PROTECTED] Load Balancing with session count method

2006-09-21 Thread vadimsh
Hi all , Is there any way to use balancing method based on session ? We need simple rule which look on session only and make sure that each tomcat gets equal number of session and ignore all other factors. May be it's already exist somewhere or you can suggest how to make it easy Thanx ! -- V

Re: [EMAIL PROTECTED] proxypass ignore case issue

2006-09-21 Thread Rainer Perske
-BEGIN PGP SIGNED MESSAGE- Nick Ascione schrieb am 2006-09-20: > [reverse proxy for is configured] > [creating a local directory .../htdocs/somedir triggers mod_speling] > [so that that .../SoMeDir gets redirected to .../somedir] > With mod_speling, th

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-21 Thread Ben
= When running make, I get these errors (sorry for the wrapping..): [your apu did not compile with mysql linked in.] --with-mysql=DIR also see above for the 1.2.8-dev requirement. I was not able to get this to work in 1.2.7 which comes with 2.2.3. Hi Philip, I go

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-21 Thread Ben
Hi Rob, Just 'cos I got it working on one machine doesn't say so much - thanks for having a go. It may be a good idea to get a tail on the mysql log ( hostname.err ) Also, because I had put mysql into a custom directory, I needed to change some of the variables in my.cnf - that may make a

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-21 Thread Ben
Hi Philip, If you can provide a set of unambiguous buildsteps for MySQL 5.0.24a over httpd-2.2.3, that would be very useful. Anything else just doesn't really help me very much - due to the large number of interdependant factors involved. -b. On 21 Sep 2006, at 06:44, Philip M. Gollucci wr

RE: [EMAIL PROTECTED] Rewrite http to https

2006-09-21 Thread Huesser Peter
> > I want to rewrite all request to > "http:virtual.server.domain/path/file.html" > > to "https://virtual.server.domain/path/file.html";. One of > > the solutions I found is: > > The simplest solution to this is as follows. If you have both an http > and https server, then you should have a blo