Re: [EMAIL PROTECTED] apache 2.2.3 and load balancing

2008-06-01 Thread Travis Sidelinger
We have been running 2.2.6 in a production environment doing session balancing. It has been working great. Eric Bowman wrote: Hi, I'm in a situation (RHEL 5.1) where the only "supported" version of Apache is 2.2.3. We are wishing to avail of the session affinity load balancing features in

[EMAIL PROTECTED] two factor authentication

2008-05-12 Thread Travis Sidelinger
Any know an easy method to provide 2-factor authentication in Apache? I'd like to require both a group name+password and a user name+password. (or simply just two user accounts) I think this could be implemented via mod_proxy, or by writing a CGI program to handle all the authentication. Tho

Re: [EMAIL PROTECTED] native apache on linux: upgrade

2008-02-15 Thread Travis Sidelinger
Yup, you will need to either change the existing httpd init script, or build a new one from scratch. You can read here for details on creating new init script: /usr/share/doc/initscripts-8.45.17.EL/sysvinitfiles(your path may be different) Melanie Pfefer wrote: Hello I compiled and i

Re: [EMAIL PROTECTED] mod_rewrite + mod_proxy trouble

2008-02-11 Thread Travis Sidelinger
Krist, Ignore my last question, I was missing a quote. Thanks a bunch, that did it. My final rule looks like: RewriteCond %{REMOTE_HOST} ^192\.168\.220\. RewriteRule "^(/.*)$" "proxy:balancer://aquabrowser$1?c_loc=220" [QSA,L] Krist van Besien wrote: > On Feb 1

Re: [EMAIL PROTECTED] mod_rewrite + mod_proxy trouble

2008-02-11 Thread Travis Sidelinger
ing to access anything other then /. Case2: RewriteRule "^(/.*)$" proxy:balancer://aquabrowser$1?c_loc=220" [QSA,L] "GET /cd/README?c_loc=220\"&test=1 HTTP/1.1" -> It works, but where is that \" coming from? I'm still testing. Kris

Re: [EMAIL PROTECTED] mod_rewrite + mod_proxy trouble

2008-02-11 Thread Travis Sidelinger
se to retrieve the IP address from. > Note, this can contain multiple IPs if there are several proxies on > route so make sure you parse it correctly. > > Regards, > Mike > > Travis Sidelinger wrote: >> We have used both mod_rewrite and mod_proxy successfully in numerou

[EMAIL PROTECTED] mod_rewrite + mod_proxy trouble

2008-02-11 Thread Travis Sidelinger
.0/12 ProxyPassReverse / http://catalogdev.tld.org #ProxyPassReverse / http://catalog1.tld.org #ProxyPassReverse / http://catalog2.tld.org Travis Sidelinger - The official User-To-User support forum of the Apache HTTP Server Pro

Re: [EMAIL PROTECTED] Split logs based upon VirtualDocumentRoot

2008-02-10 Thread Travis Sidelinger
In our environment we stream all the Apache logs to a central syslog server. I recently wrote a program in perl to auto separate the logs per application name. Here is the program I wrote if you are interested: http://www.ilive4unix.net/doku.php/code/perl/logsplitter.pl Travis Sidelinger

Re: [EMAIL PROTECTED] Cannot Access Server From Outside Network

2008-02-09 Thread Travis Sidelinger
Maybe check your server's default gateway, else it is most likely a router/firewall issue. David Dahl wrote: Hello, I've set Apache to connect to port 80 I am able to connect to Apache from behind my router at 192.168.1.47 I am able to connect to http://localhost/index.html but I am unable to

[EMAIL PROTECTED] mod_rewrite + mod_proxy troubles

2008-02-09 Thread Travis Sidelinger
ProxySet maxattempts=3 ProxySet timeout=5 Order Allow,Deny Allow from 192.168.0.0/16 172.16.0.0/12 ProxyPassReverse / http://catalogdev.tld.org #ProxyPassReverse / http://catalog1.tld.org #ProxyPassReverse / http://catalog2.tld.org Travis Sidelinger ---