Re: [us...@httpd] Upload stops after 30 minutes

2009-06-16 Thread Patrick Herber
Thanks a lot for your answer. Since this is a browser-based application I don't think FTP or rsync/SSH are practicable alternatives, aren't they? Regards, Patrick Jonathan Zuckerman wrote: Probably not the answer you're looking for but I don't think that HTTP is the best protocol for what yo

Re: [us...@httpd] MPM Default in Linux

2009-06-16 Thread Prasanna Ram Venkatachalam
> > > I read Apache's documentation and would like to know: "How do default MPM > module in Linux ??" Prefork or Worker ?? Prefork is the default > > Other question. How do I change to MPM Worker ?? Compile like this ./configure --prefix=/usr/local/apache --with-mpm=worker Regards Prasanna Ra

[us...@httpd] MPM Default in Linux

2009-06-16 Thread ricardo13
Hi, I read Apache's documentation and would like to know: "How do default MPM module in Linux ??" Prefork or Worker ?? I ran the command httpd -l and shows some modules: core.c mod_authn_file.c mod_authn_default.c mod_authz_host.c mod_env.c mod_setenvif.c prefork.c ---> Pr

[us...@httpd] "ssl_error_handshake_failure_alert" when trying to connect to an apache+modssl subdir with a unique SSL cert ?

2009-06-16 Thread PGNet Dev
(modssl-user list, and it's -owner email are refusing any/all mail. sigh. @#httpd suggested this is the 'right' forum ...) hi, i'm trying to set up modssl-based, unique SSL certificate authentication for a subdirectory @ a shared-host. atm, my setup returns a Server error of, ssl_error

Re: [us...@httpd] man-in-the-middle https proxy

2009-06-16 Thread dummy
Hi Nick, thanks for pointing me to TLS/SNI patch which I found in 2.2.12dev working, but this needs a TLS/SNI enabled browser also. We are using IE6 on Windows XP :( My next issue on realising a https proxy would be that that mod_proxy_connect gets the server-name in the request of CONNECT www.

[us...@httpd] Dynamic properties for mod_proxy_balancer

2009-06-16 Thread h iroshan
Hi All, I want to know whether the mod_proxy_balancer can dynamically change there propertis during the run time. For ex- can we change lbfactor's values for workers periodically according to there work load. If it is ok, is it possible to do that by updating the workers lbfactor values in the s

[us...@httpd] Tracing module list and calls

2009-06-16 Thread Markus Moeller
Hi, I am writing two authorizations modules for Apache 2 and have a problem that the second module seems never be called (e.g. authz_2). How can I trace the module stack and how can I debug the decision of apche to run or not to run the module. None of the two modules is authoritative (not sure

Re: [us...@httpd] Benefits on Linux64 bit OS as compared to 32bit

2009-06-16 Thread Mohit Anchlia
some more Qs 1. Is there a list of 3rd party libs that we need to verify against? We currently don't have 64bit OS. We are planning to compile apache on 64bit. 2. Is the assumption that successful compilation of apache means that we are ok with 3rd party libs correct? 3. Is there a stable release

Re: [us...@httpd] RewriteRule for case insensitive URL

2009-06-16 Thread Krist van Besien
On Tue, Jun 16, 2009 at 3:33 PM, Matt Veitas wrote: > Hi > > I am attempting to create a rewrite rule for our application and am in > need of some assistance. The application is found at the following > URL: https://my.domain.com/FooBar > > We are looking to be able to catch all cases of the path /

Re: [us...@httpd] Benefits on Linux64 bit OS as compared to 32bit

2009-06-16 Thread Lists
Jonathan Zuckerman wrote: I would imagine most commercial grade webservers are 64-bit. RAM is so cheap it seems like a waste of a sweet machine to use only 4 gigs of it 4 Gigs per process is a bit more accurate I think, right?... which is still quite a bit relative to a "usual" webserving envi

Re: [us...@httpd] Upload stops after 30 minutes

2009-06-16 Thread Jonathan Zuckerman
Probably not the answer you're looking for but I don't think that HTTP is the best protocol for what you're trying to do.. with files of that size, why not consider FTP or rsync/SSH? On Tue, Jun 16, 2009 at 8:56 AM, Patrick Herber wrote: > Hello! > > Thanks a lot for your answer! > > Unfortunately

Re: [us...@httpd] Benefits on Linux64 bit OS as compared to 32bit

2009-06-16 Thread Jonathan Zuckerman
I would imagine most commercial grade webservers are 64-bit. RAM is so cheap it seems like a waste of a sweet machine to use only 4 gigs of it On Tue, Jun 16, 2009 at 8:31 AM, Mohit Anchlia wrote: > We are currently on Apache 2.2.6, Red Hat Linux 32bit. We are planning > to move to Linux 64bit OS

Re: [us...@httpd] Upload stops after 30 minutes

2009-06-16 Thread Patrick Herber
Hello! Thanks a lot for your answer! Unfortunately it seems that I'm really running against a timeout problem: Indeed with a slow connection I have this problem already with around 100MB, in my office (a good ADSL connection) I reach 250MB and directly in the same LAN of the Server I can uploa

Re: [us...@httpd] Upload stops after 30 minutes

2009-06-16 Thread André Warnier
Patrick Herber wrote: ... Not really sure about this, so don't take it as gospel, but I believe that there may be some "maximum POST size" parameter built-in into Apache and/or Tomcat (as a protection against denial-of-service attacks). Maybe that is what you are running against, not a timeout

[us...@httpd] Upload stops after 30 minutes

2009-06-16 Thread Patrick Herber
Hello, I have java application running on a Tomcat 6 server sitting behind an Apache HTTPD Server (Apache/2.2.8 (Linux/SUSE) mod_ssl/2.2.8 OpenSSL/0.9.8g). I'm experiencing problems uploading big files on it: after around 30 minutes (nearly exactly 30 minutes!) the upload stops. I've tried to

[us...@httpd] Benefits on Linux64 bit OS as compared to 32bit

2009-06-16 Thread Mohit Anchlia
We are currently on Apache 2.2.6, Red Hat Linux 32bit. We are planning to move to Linux 64bit OS to be consistent with other environments internal to our group. Before we make this change I wanted some suggestions on the following: 1. Are there any pros or cons of running Apache on Linux 64bit? 2.

Re: [us...@httpd] chrooted V non-chrooted

2009-06-16 Thread Carlos Eduardo Maiolino
Hi Igor. chroot, like Fred said, add another security layer in your environment, protecting the OS from the Web Server. I mean, if web server have be compromised, the person will have access just to the web server. chroot is a good option to secure your webserver, but maybe it's not easily to bui

Re: [us...@httpd] RewriteRule for case insensitive URL

2009-06-16 Thread André Warnier
Matt Veitas wrote: Hi I am attempting to create a rewrite rule for our application and am in need of some assistance. The application is found at the following URL: https://my.domain.com/FooBar We are looking to be able to catch all cases of the path /FooBar (fooBar, Foobar, foobar, FOOBAR) and

[us...@httpd] RewriteRule for case insensitive URL

2009-06-16 Thread Matt Veitas
Hi I am attempting to create a rewrite rule for our application and am in need of some assistance. The application is found at the following URL: https://my.domain.com/FooBar We are looking to be able to catch all cases of the path /FooBar (fooBar, Foobar, foobar, FOOBAR) and have it redirect to

[us...@httpd] Re: mod_rewrite

2009-06-16 Thread Dan Poirier
"Richard Schoenig" writes: > I am trying to use mod_rewrite to direct user to another web server when they > request a specific page within our application. For instance when a user > requests rep*.* with all the following URL information I would like them > directed to an alternate server. How

Re: [us...@httpd] Custom Error Handling

2009-06-16 Thread Torsten Foertsch
Hi André, On Tue 16 Jun 2009, André Warnier wrote: > Alan Wilson wrote: > > Thanks - that makes sense, using a test along the lines of > > > > print "Content-Type: text/html\n"; > > print "Status: 302 Moved\nLocation: > > http://www.mydomain.com/test.cgi\n\n";; print "\n"; > > > > Seems to do what

[us...@httpd] problem with jnlp extension and mime.types

2009-06-16 Thread Pedro Moreno
Hi, Im working in an application with an apache server installed in wampserver application. My application is launched by means of a jnlp archive with Java Web Start. When I press the link to download the jnlp archive, it doesn’t download but it appear in my web browser (firefox) as a plain

[us...@httpd] mod_rewrite

2009-06-16 Thread Richard Schoenig
Hello, I am trying to use mod_rewrite to direct user to another web server when they request a specific page within our application. For instance when a user requests rep*.* with all the following URL information I would like them directed to an alternate server. However, once those requests

Re: [us...@httpd] SSLProxyEngine, no client certificate found

2009-06-16 Thread Nicolas Cros
Krist, thanks for your answer. I'd suspect that the client certificate for the second host wasn't found in /etc/httpd/conf/ssl/SSLproxy.pem In fact, both remote sites trusts the same CA. My comprehension is that the same client certicate can be used, but apache/mod_ssl (for an obscure reaso

Re: [us...@httpd] SSLProxyEngine, no client certificate found

2009-06-16 Thread Krist van Besien
On Tue, Jun 16, 2009 at 8:49 AM, Nicolas Cros wrote: > The other one not : > > [debug] ssl_engine_kernel.c(1571): Proxy client certificate callback: > (myproxy:443) no client certificate found!? > > I wonder myself how clients certificates are choosen ? Any thoughts ? I'd suspect that the client

Re: [us...@httpd] Custom Error Handling

2009-06-16 Thread André Warnier
Alan Wilson wrote: Thanks - that makes sense, using a test along the lines of print "Content-Type: text/html\n"; print "Status: 302 Moved\nLocation: http://www.mydomain.com/test.cgi\n\n";; print "\n"; Seems to do what I want. That is strange, and I am surprised it works (but I don't know ev

RE: [us...@httpd] Custom Error Handling

2009-06-16 Thread Alan Wilson
Thanks - that makes sense, using a test along the lines of print "Content-Type: text/html\n"; print "Status: 302 Moved\nLocation: http://www.mydomain.com/test.cgi\n\n";; print "\n"; Seems to do what I want. I just wasn't sure what the syntax in the header should be. Alan Alan Wilson Icetrak L

Re: [us...@httpd] Turkish Language Support

2009-06-16 Thread André Warnier
mustafa basaran wrote: ... Hi. You are on the wrong support list. This is the list for the Apache httpd server, not the Apache Tomcat servlet engine. Look on this page for subscribing to the Tomcat list : http://tomcat.apache.org/lists.html This being said, and subject to confirmation by Tomca

Re: [us...@httpd] chrooted V non-chrooted

2009-06-16 Thread Igor Cicimov
Running apache in chroot adds another layer of security. You can chroot the apache server and copy over all the libraries you need and only the programs you need like /bin/sh lets say to start/stop the server. In that way any security issue or intruder will end up in "jail" and have limited program

[us...@httpd] Turkish Language Support

2009-06-16 Thread mustafa basaran
Hi, I and related academic lecturers of my university wish to supply Turkish Language support to Apache Tomcat server. Does there exist any problem(or deficiency) on Apache Tomcat Server such that? If a problem exists such this can you direct us on this subject(or problem) about what we must do to