AW: [EMAIL PROTECTED] Forward proxies and aliases

2008-07-08 Thread christian.folini
On Tue, 8 Jul 2008 22:04:54 "Nick Kew" <[EMAIL PROTECTED]> wrote: >> But that's a reverse proxy, not a forward one. I'm attempting to use >> an Apache server as a proxy for my web browser, that uses a local copy >> of certain files from certain sites. As such, it has to be a forward >> proxy,

Re: [EMAIL PROTECTED] Request processing/logging according to HTTP GET/POST parameter

2008-07-08 Thread Rich Schumacher
Samir, In regards to #2 and #3: Yes, you could write your own module to accomplish this, but the flexibility you're seeking is already possible. Using Apache's piped logs feature you can pipe the log data to a custom written script via STDIN. This script can then do whatever you want with this i

[EMAIL PROTECTED] mod_rewrite to hide subdirectory

2008-07-08 Thread Alex List
Hello, I need to hide an embedded directory in a URL site2.com/site2files/ <-- need to remove that and just see site2.com for the files in / site2files/ Here's a visual representation of my file system. site1.com Document root: -file -file.html -folder/ -site2folder/ (Important!) -file -fun

[EMAIL PROTECTED] Can I configure a load balancer using https ?

2008-07-08 Thread Jorge Medina
Hi, Is it possible to configure Apache as a reverse proxy that will pass a request to any of the servers in a cluster using HTTPS? Basically I want to know if it possible to configure Apache as a reverse proxy (load balancer) that won't do any decryption, just a pass-trough of the reque

[EMAIL PROTECTED] suExec & vhost problem

2008-07-08 Thread Nick Wiltshire
Hi list, I'm trying to set up suExec with virtual hosts, and I am either going about this all wrong, or I have found a bug. Given the following vhost: SuexecUserGroup example.org example.org ScriptAlias /php5 ~/cgi-bin/php Action php5-cgi /php5 AddHandler php5-

Re: [EMAIL PROTECTED] Re: [Disarmed Scripts] [EMAIL PROTECTED] .htaccess advice

2008-07-08 Thread Rob
^bump

Re: [EMAIL PROTECTED] Forward proxies and aliases

2008-07-08 Thread Nick Kew
On Tue, 8 Jul 2008 13:48:54 -0600 "Tavian Barnes" <[EMAIL PROTECTED]> wrote: > But that's a reverse proxy, not a forward one. I'm attempting to use > an Apache server as a proxy for my web browser, that uses a local copy > of certain files from certain sites. As such, it has to be a forward > pr

Re: [EMAIL PROTECTED] Forward proxies and aliases

2008-07-08 Thread Tavian Barnes
But that's a reverse proxy, not a forward one. I'm attempting to use an Apache server as a proxy for my web browser, that uses a local copy of certain files from certain sites. As such, it has to be a forward proxy, because I'm using it for arbitrary web sites. On Tue, Jul 8, 2008 at 1:13 PM, Wi

RE: [EMAIL PROTECTED] Forward proxies and aliases

2008-07-08 Thread Wilda, Jet
You can do that for example by ProxyPass /ig ! ProxyPass / http://server:port/ ProxyPassReverse / http:// server:port/ This would cause Apache to look for /ig in the DocumentRoot. ~Jet -Original Message- From: Tavian Barnes [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 08, 20

[EMAIL PROTECTED] Forward proxies and aliases

2008-07-08 Thread Tavian Barnes
Is it possible to only proxy part of a site, and use local files for the rest? I want most requests to be passed through the proxy, but some to be aliased to a local file. I tried Alias http://www.google.com/ig /home/httpd/html/ig and similar things, and nothing worked. Can this be done? --

Re: [EMAIL PROTECTED] Configure Options Not Recognized

2008-07-08 Thread Brad Isbell
I've seen that before. That's why I thought I had the syntax correct. # ./configure -help | grep ssl --enable-ssl SSL/TLS support (mod_ssl) --enable-distcache Select distcache support in mod_ssl --with-sslport=SSLPORT Port on which to securelist

Re: [EMAIL PROTECTED] Configure Options Not Recognized

2008-07-08 Thread Carlos Eduardo Maiolino
Hey Brad, I'm not use the apache in the last months, but, I think you can use the --with-modules=ssl try `./configure --help | less` to show all options and verify your sintax ok ? See you, Bye. On Tue, Jul 8, 2008 at 1:35 PM, Brad Isbell <[EMAIL PROTECTED]> wrote: > I'm trying to compile ap

Re: [EMAIL PROTECTED] Strange compile / build problem: Apache 2.2.9 under Solaris 10 SPARC

2008-07-08 Thread Igor Galić
Hi Wulf, There's an issue with 2.2.9's configure https://issues.apache.org/bugzilla/show_bug.cgi?id=45221#c6 Running ./buildconf should solve it. The Environment Flags: bash-3.00# export CC="/usr/sfw/bin/gcc" export LDFLAGS="-R/usr/sfw/lib/sparcv9 -L/usr/sfw/lib/sparcv9 -R/usr/lib -L/usr/lib

[EMAIL PROTECTED] Configure Options Not Recognized

2008-07-08 Thread Brad Isbell
I'm trying to compile apache (httpd-2.2.9) with ssl support on CentOS 4.6. I run: # ./configure --prefix=/opt/apache2 --enable-ssl and I see: configure: WARNING: Unrecognized options: --enable-ssl So I figure maybe I would just enable all the modules with this command: # ./configu

Re: [EMAIL PROTECTED] Programmatic Authorization Logic

2008-07-08 Thread André Warnier
Ali Sakebi wrote: [...} Just a thought : if you are going through Apache anyway, and are thinking of using mod_perl anyway, can you not do both authentication and authorization in Apache/mod_perl, before you forward to your webapp (I presume under Tomcat) ? mod_jk will forward the user authent

Re: [EMAIL PROTECTED] Apache hang and kernel entropy

2008-07-08 Thread William A. Rowe, Jr.
Arnab Ganguly wrote: Hi All, Anybody faced Apache hang due to the kernel entropy issue? What was the workaround adopted for that? 2.2.9 recently switched several cases of consuming real entropy with the psuedorandom equivilant, and it defaults to /dev/urandom if available in lieu of /dev/rando

Re: [EMAIL PROTECTED] Apache Monitor not Showing All Instances of Apache

2008-07-08 Thread Nick Cooper
William A. Rowe, Jr. wrote: > Nick Cooper wrote: > >> Hello, >> >> I have four instances of Apache installed on a Windows XP SP2 machine, all >> four instances are working correctly. The problem is Apache Monitor is only >> showing two instances. >> >> Versions in use: >> 2.0.61 - shown >> 2.2.4 -

[EMAIL PROTECTED] Apache hang and kernel entropy

2008-07-08 Thread Arnab Ganguly
Hi All, Anybody faced Apache hang due to the kernel entropy issue? What was the workaround adopted for that? Thanks in advance Regards Arnab

Re: [EMAIL PROTECTED] Apache Monitor not Showing All Instances of Apache

2008-07-08 Thread William A. Rowe, Jr.
Nick Cooper wrote: Hello, I have four instances of Apache installed on a Windows XP SP2 machine, all four instances are working correctly. The problem is Apache Monitor is only showing two instances. Versions in use: 2.0.61 - shown 2.2.4 - shown 2.2.8 - not shown 2.2.9 - not shown 2.2.8 was

Re: [EMAIL PROTECTED] Need help with RewriteRule

2008-07-08 Thread robert . badaracco
Thank you Eric. That did the trick. Bob "Eric Covener" <[EMAIL PROTECTED] m>

Re: [EMAIL PROTECTED] Apache crashes when using WHILE loop to traverse SQL query results

2008-07-08 Thread Bonger O
Thanks for the advice guys. I'll go pester some PHP folks! On Tue, Jul 8, 2008 at 12:26 PM, Norman Peelman <[EMAIL PROTECTED]> wrote: > Bonger O wrote: > >> Hi guys, >> Thanks for getting back to me on this with your comments, but sadly I've >> still had no luck. >> I have managed to narrow t

Re: [EMAIL PROTECTED] trouble with vhosts and 2.2.8

2008-07-08 Thread Eben
just a quick follow up on this, the group consensus was correct, it was an OS permissions issue, the top most directory on the doc root had restrictive permissions. Allowing read rights for group and world allowed access for apache. Thanks for the helpful insight. Eben Norman Peelman wrote:

Re: [EMAIL PROTECTED] Apache crashes when using WHILE loop to traverse SQL query results

2008-07-08 Thread Norman Peelman
Bonger O wrote: Hi guys, Thanks for getting back to me on this with your comments, but sadly I've still had no luck. I have managed to narrow the problem down to *$row = mysqli_fetch_assoc($result);* For some reason this is causing the crash. Would there be any reason that this function ca

Re: [EMAIL PROTECTED] mpm worker proxy: High CPU load, unresponsive

2008-07-08 Thread Igor Galić
Should anyone be following this thread: > Couple of thoughts: > * Does this persist if you switch back to APR-1.2.latest? I don't know, haven't tried yet, right now I also don't have a possibility to try it out. Tried that now too, the result is similar: https://issues.apache.org/bugzil

[EMAIL PROTECTED] apache 2.0.x, tomcat/glassfish: ClientAbortException?

2008-07-08 Thread Kristian Rink
Hi all; dealing with a peculiar problem in our environment, running apache 2.0.x (Ubuntu 6.06.1) fronting our backend systems (tomcat 6.x, glassfish v2u2) using mod_rewrite: In quite a bunch of situations we suffer from ClientAbortExceptions like these whenever someone tries downloading a larger b

[EMAIL PROTECTED] Apache Monitor not Showing All Instances of Apache

2008-07-08 Thread Nick Cooper
Hello, I have four instances of Apache installed on a Windows XP SP2 machine, all four instances are working correctly. The problem is Apache Monitor is only showing two instances. Versions in use: 2.0.61 - shown 2.2.4 - shown 2.2.8 - not shown 2.2.9 - not shown 2.2.8 was previously showing befo