Re: [users@httpd] jsp

2005-06-14 Thread hutuworm
You need a JSP container like Tomcat or Resin, etc. On 6/15/05, ganesan malairaja <[EMAIL PROTECTED]> wrote: > hi guys > > i would like to know the requirements to make a jsp code running. > > i know i need jsee. > > do i need tomcat ... > > any other tools i need to make the page running >

[users@httpd] jsp

2005-06-14 Thread ganesan malairaja
hi guys i would like to know the requirements to make a jsp code running. i know i need jsee. do i need tomcat ... any other tools i need to make the page running thanks - The official User-To-User support forum of the Ap

[users@httpd] Upload Problem

2005-06-14 Thread Ressa Restullah
Dear All.. I've a problem with my web server, when i'm tryinh to upload file bigger than 8 MB i won't work. I get this information from the apache log. I'm using apache from the my distro(rpm packages) ?? Does anyone know about this ?? or having experience with this -- Ressa Registered Linux Use

Re: [users@httpd] mod_proxy / mod_rewrite: Passing remote IP address to internal server

2005-06-14 Thread David Adam
On Wed, 15 Jun 2005, Werner Schalk wrote: > I do use mod_proxy as a reverse / forward proxy as follows: > > Inet -> Server (public IP, Apache 2) -> Internal Server (same system, virtual > server using Linux vserver - private IP address, Apache 2) > > Now all the requests that are send to the public

Re: [users@httpd] Forcing External Redirect requests through mod_rewrite and proxy

2005-06-14 Thread Joshua Slive
On 6/14/05, Tim Traver <[EMAIL PROTECTED]> wrote: > Joshua, > > its doing an internal redirect to the local server. I need it to make an > external request to that URL and pass through the data it gets back. > > I need it to do that so that it hits the load balancing hardware, and sends > the req

[users@httpd] mod_proxy / mod_rewrite: Passing remote IP address to internal server

2005-06-14 Thread Werner Schalk
Hi, I do use mod_proxy as a reverse / forward proxy as follows: Inet -> Server (public IP, Apache 2) -> Internal Server (same system, virtual server using Linux vserver - private IP address, Apache 2) Now all the requests that are send to the public IP address are forwarded to the internal ser

Re: [users@httpd] Apache 2.0 Secure and non secure server

2005-06-14 Thread Kory Wheatley
To bring the secure server down on one instance would the easiest way be commenting out #llisten 443 and then issuing a "apachectl graceful", and Vice versa for port 80? Can one instance have Vitural Server Hosting on port 80 but not on the Secure Server? Also it might be a nightmare to configure P

Re: [users@httpd] Forcing External Redirect requests through mod_rewrite and proxy

2005-06-14 Thread Tim Traver
Joshua, its doing an internal redirect to the local server. I need it to make an external request to that URL and pass through the data it gets back. I need it to do that so that it hits the load balancing hardware, and sends the request to the server group that can handle the requests for th

Re: [users@httpd] Forcing External Redirect requests through mod_rewrite and proxy

2005-06-14 Thread Joshua Slive
On 6/14/05, Tim Traver <[EMAIL PROTECTED]> wrote: > Hi all, > > ok, this may sound wierd, but I'm sure you guys have heard it all... > > I am trying to do a proxy redirect using the [P] directive at the end of > a mod_rewrite rule. Here is what my .htaccess file looks like : > > RewriteEngine On

Re: [users@httpd] Apache 2.0 Secure and non secure server

2005-06-14 Thread Joshua Slive
On 6/14/05, Kory Wheatley <[EMAIL PROTECTED]> wrote: > Question: > > Would it be better to setup Apache Secure Server and NON Secure Server > on two separate configuration instances, or one just one instance? > Would it be a performance hit to have it setup as two separate server > instances? It

[users@httpd] Apache 2.0 Secure and non secure server

2005-06-14 Thread Kory Wheatley
Question: Would it be better to setup Apache Secure Server and NON Secure Server on two separate configuration instances, or one just one instance? Would it be a performance hit to have it setup as two separate server instances? -- Kory Wheatley -

[users@httpd] Forcing External Redirect requests through mod_rewrite and proxy

2005-06-14 Thread Tim Traver
Hi all, ok, this may sound wierd, but I'm sure you guys have heard it all... I am trying to do a proxy redirect using the [P] directive at the end of a mod_rewrite rule. Here is what my .htaccess file looks like : RewriteEngine On RewriteCond %{REQUEST_URI} !-s RewriteRule ^page/(.*) http://d

RE: [users@httpd] Error at installing apache.rpm

2005-06-14 Thread PMilanese
Whoops.   Go back to that site. The other packages are there as well.   Apache2-mpm should be the apache2-worker on the site I think.       From: Peter J Milanese Sent: Tuesday, June 14, 2005 8:25 AM To: 'users@httpd.apache.org' Subject: RE: [EMAIL PROTECTED] Error at inst

Re: [users@httpd] Apache generated pages

2005-06-14 Thread Joshua Slive
On 6/14/05, Octavian Rasnita <[EMAIL PROTECTED]> wrote: > Hi, > > I am using Apache 2.0.54 under Linux and I am viewing a directory which > doesn't have a directory index (an index.html or index.php, etc). > The page is created with no problems, and all the files are shown as it > should, and one

Re: [users@httpd] mod_deflate w/reverse proxy

2005-06-14 Thread Joshua Slive
On 6/14/05, Serge Knystautas <[EMAIL PROTECTED]> wrote: > I'm having trouble using mod_deflate to compress content that is going > through my reverse proxy using apache 2.0.46. Quite an old version. If you are using complex stuff like deflate and proxy, you should be keeping up with more recent v

RE: [users@httpd] RewriteRule problems

2005-06-14 Thread Ian Huynh
what does your rewrite log file say? If you add RewriteEngine on RewriteLog "/usr/local/var/apache/logs/rewrite.log"<<--- change this to your appropriate path RewriteLogLevel 9 <<-- use level 9 only for debugging. RewriteRule ^/old/(.*) http://ukrbc

[users@httpd] RewriteRule problems

2005-06-14 Thread Arne Heizmann
Hi, I get a 403 Forbidden when trying to use a RewriteRule to proxy a request to another server. I have two servers, ukrbcsr01 and ukrbcsr02. ukrbcsr02 is accessible from the outside, ukrbcsr01 isn't. Their LAN IPs are 192.168.0.131 and 192.168.0.132, respectively. I can access one from the

RE: [users@httpd] mod_deflate w/reverse proxy

2005-06-14 Thread Axel-Stéphane SMORGRAV
Take a look at http://issues.apache.org/bugzilla/show_bug.cgi?id=31226. There is apparently a problem with AddOutputFilterByType. I've had the exact same problem. The solution I chose was to use SetOutputFilter (instead of AddOutputFilterByType) and use other means for selecting what resources

Re: [users@httpd] mod_deflate w/reverse proxy

2005-06-14 Thread David Adam
Serge, On Tue, 14 Jun 2005, Serge Knystautas wrote: > I'm having trouble using mod_deflate to compress content that is going > through my reverse proxy using apache 2.0.46. All requests go to a > default virtual host, and then I use RewriteConf/RewriteRule [P] to > carve off certain hostnames to

[users@httpd] mod_deflate w/reverse proxy

2005-06-14 Thread Serge Knystautas
I'm having trouble using mod_deflate to compress content that is going through my reverse proxy using apache 2.0.46. All requests go to a default virtual host, and then I use RewriteConf/RewriteRule [P] to carve off certain hostnames to reverse proxy to another webserver. We use this approach

Re: [users@httpd] apache as reverse-proxy : forwarding SSL environment variables

2005-06-14 Thread lists
Hi all. Thanks for your support Joshua Slive wrote: You can set them in a cookie or in the query string. mod_rewrite can do either of these. Then, if necessary, mod_rewrite on the back-end machine could put them back in the environment. Brian Hughes '89 wrote: What I've been doing with my Ap

RE: [users@httpd] Authorize users from an intermediate CA only

2005-06-14 Thread Axel-Stéphane SMORGRAV
Take a look at the SSLRequire directive. You can choose to only accept client certificates issued by a named issuer CN for example. -ascs -Original Message- From: pierre lhostis [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 14, 2005 9:53 AM To: users@httpd.apache.org Subject: [EMAIL PRO

RE: [users@httpd] Forbid Directory Listings

2005-06-14 Thread Jack Stone
From: "Boyle Owen" <[EMAIL PROTECTED]> Reply-To: users@httpd.apache.org To: Subject: RE: [EMAIL PROTECTED] Forbid Directory Listings Date: Tue, 14 Jun 2005 14:31:44 +0200 > -Original Message- > From: Jack Stone [mailto:[EMAIL PROTECTED] > Sent: Dienstag, 14. Juni 2005 04:54 > To: users@h

Re: [users@httpd] apache as reverse-proxy : forwarding SSL environment variables

2005-06-14 Thread Bud P. Bruegger
At 09.20 14/06/2005 -0400, you wrote: I've posted examples of how to do this to the list a few times over the past several months. If you have trouble finding them in one of the archives, let me know and I'll send the example conf statements directly to you. -Brian Hi Brian et al. here my

Re: [users@httpd] apache as reverse-proxy : forwarding SSL environment variables

2005-06-14 Thread Brian Hughes '89
On Jun 14, 2005, at 08:53 AM, Joshua Slive wrote: On 6/14/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: We've successfully set up apache with mod_proxy + mod_rewrite in front of our (yet another) apache serving our webapps. We've an application that use some mod_ssl environment variables to

Re: [users@httpd] apache2: mod_cache: no X-Cache header

2005-06-14 Thread Joshua Slive
On 6/13/05, john doe <[EMAIL PROTECTED]> wrote: > I just migrated from Apache 1.3 to Apache2 through Debian Sarge. I use > mod_proxy/mod_cache/mod_disk_cache for reverse proxying. To my > surprise, X-Cache is no longer being produced. Is this a supposed > behavior? How can one calculate hit/miss ra

Re: [users@httpd] apache as reverse-proxy : forwarding SSL environment variables

2005-06-14 Thread Joshua Slive
On 6/14/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi, > > We've successfully set up apache with mod_proxy + mod_rewrite in front > of our (yet another) apache serving our webapps. > > We've an application that use some mod_ssl environment variables to work > properly (for example it use

RE: [users@httpd] Fw: signal Bus error with apache Apache/2.0.54 with SSL pages

2005-06-14 Thread Boyle Owen
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > Sent: Montag, 13. Juni 2005 19:31 > To: users@httpd.apache.org > Subject: RE: [EMAIL PROTECTED] Fw: signal Bus error with apache > Apache/2.0.54 with SSL pages > > > OK - I tired a new setting in my mail client

RE: [users@httpd] Forbid Directory Listings

2005-06-14 Thread Boyle Owen
> -Original Message- > From: Jack Stone [mailto:[EMAIL PROTECTED] > Sent: Dienstag, 14. Juni 2005 04:54 > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Forbid Directory Listings > > > I've just moved to Apache-2.0.54 from Apache-1.33x on FBSD-5.4 > > There is one feature that t

RE: [users@httpd] Error at installing apache.rpm

2005-06-14 Thread PMilanese
You   From: Andreas Bauer [mailto:[EMAIL PROTECTED] Sent: Monday, June 13, 2005 6:57 PM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] Error at installing apache.rpm   Hello!   Installing apache rpm file: apache2-2.0.50-7.2.i586.rpm from Suse Server: ftp://ftp.gwdg.

RE: [users@httpd] POSTing to non-executable file

2005-06-14 Thread Yanbin Ma
I know some browsers send in HTTP HEAD command before they send HTTP GET. I am sure your client program can do the same. Yanbin Ma Competitrack Inc. 718-482-4284 -Original Message- From: Stephen Carville [mailto:[EMAIL PROTECTED] Sent: Monday, June 13, 2005 10:01 PM To:

[users@httpd] Re: still content negotiation problems

2005-06-14 Thread Marco Scoffier
Hey Joshua, Thanks for your response. Just replying to snips 'cause I figured it out. On Mon, 13 Jun 2005 21:50:53 -0400, Joshua Slive wrote: > Ouch. OpenBSD doesn't have mod_mime by default? That's crazy. > In fact OpenBSD does have mod_mime and mod_negotiation compiled in, I've gotten so u

[users@httpd] apache as reverse-proxy : forwarding SSL environment variables

2005-06-14 Thread lists
Hi, We've successfully set up apache with mod_proxy + mod_rewrite in front of our (yet another) apache serving our webapps. We've an application that use some mod_ssl environment variables to work properly (for example it use SSL_CLIENT_S_DN). The problem when connecting through reverse prox

[users@httpd] Authorize users from an intermediate CA only

2005-06-14 Thread pierre lhostis
Hello all, I have got a SSL question I want to use mutual authentication and I only want users from an intermediate Certification Authority (CA) to get access to my website. My intermediate CA (called SubCA here) depends on another CA this way: RootCA \---sign--> mySubCA \---si

Re: [users@httpd] How to limit php script execution to a select path only ?

2005-06-14 Thread Maxim Vexler
On 6/14/05, Rich <[EMAIL PROTECTED]> wrote: > Example: > > > php_admin_value open_basedir /htdocs/bla/bla1/:/htdocs/bla/bla2/ > > > This will limit PHP execution to the two paths specified. > > NOTE: > 1) The paths MUST be absolute from root, or the chroot of apache if > appropriate - it SHOUL

[users@httpd] Apache generated pages

2005-06-14 Thread Octavian Rasnita
Hi, I am using Apache 2.0.54 under Linux and I am viewing a directory which doesn't have a directory index (an index.html or index.php, etc). The page is created with no problems, and all the files are shown as it should, and one of the link created is: 2005-06-13.tgz After accessing this type o