Re: [us...@httpd] Proxy needs to rewrite parameters in QueryString

2009-02-18 Thread Krist van Besien
On Wed, Feb 18, 2009 at 8:27 PM, Andreas Dahlen wrote: > The rewrite statements was wrong (I accidently changed one / to ?), should > be "Location: > http://login.internal.com/LoginSuccess?servername=http://backend1.internal.c > om" > > Since RewriteRules doesn't operate on what goes out, is ther

Re: [us...@httpd] Proxy needs to rewrite parameters in QueryString

2009-02-18 Thread Krist van Besien
On Fri, Feb 13, 2009 at 12:52 PM, Andreas Dahlén wrote: > A succefull LoginRequest is redirected by the Location-header > Location: > http://login.internal.com?LoginSuccess?servername=http://backend1.internal.com > > I need to rewrite "servername=http://backend1.internal.com"; to > "servername=ht

Re: [us...@httpd] Authentication/Authorization using HTTP Server

2009-02-18 Thread Vasanth Kumar ravi
Okay now I m able to acces the webpage. But this module supports only for Oracle 9i, not sure this would work for oracle 10g. Lemme try it out. On Thu, Feb 19, 2009 at 9:52 AM, Anthony J. Biacco < abia...@formatdynamics.com> wrote: > That pages works for me, but if you're using php, just recompil

RE: [us...@httpd] Authentication/Authorization using HTTP Server

2009-02-18 Thread Anthony J. Biacco
That pages works for me, but if you're using php, just recompile php with oracle library support (assuming you've installed the libraries from oracle's website) and you can access the db from your scripts. -Tony Sent from my Windows Mobile® phone. -Original Message- From: Vasanth Kuma

Re: [us...@httpd] Authentication/Authorization using HTTP Server

2009-02-18 Thread Vasanth Kumar ravi
Well i did try to access the link http://oskin.ru/mod_auth_oracle.html, but the page did not come up. I did find that there are modules for mysql & postgresql, but the application is running using oracle 10g. Authentication would be implemented in httpd by using custom made php script/pages. we nee

Re: [us...@httpd] [client 127.0.0.1] client denied by serverconfiguration: /srv/www/htdocs/

2009-02-18 Thread André Warnier
Nick Kew wrote: James Pifer wrote: On Wed, 2009-02-18 at 14:49 -0700, Anthony J. Biacco wrote: Hmm..do you have a block that's maybe denying it, or lack of one? Ok, found this in the main httpd.conf. The virtual servers are all includes. So is it "safe" to comment this out? No. Don't do

Re: [us...@httpd] make install fails on Solaris sun box

2009-02-18 Thread Tommy Nordgren
The most common reason for Make Install to fail, is that you don't have sufficient access rights to install in the right directories. The default installation for locally built open-source packages are in subdirectories of /usr/local on most unixes. You can fix this by giving the command: sudo mak

Re: [us...@httpd] SQUID + APACHE

2009-02-18 Thread Nick Kew
F. wrote: Hello I have squid as accelerator, but I have a security problem with IP based access. Apache see all users as localhost. Any method to use X-forward-IP in Apache instead of normal IP? You could use mod_rewrite to test for the forwarded IP. But that's an ugly solution. Better to

Re: [us...@httpd] [client 127.0.0.1] client denied by serverconfiguration: /srv/www/htdocs/

2009-02-18 Thread Nick Kew
James Pifer wrote: On Wed, 2009-02-18 at 14:49 -0700, Anthony J. Biacco wrote: Hmm..do you have a block that's maybe denying it, or lack of one? Ok, found this in the main httpd.conf. The virtual servers are all includes. So is it "safe" to comment this out? No. Don't do that. At a glanc

RE: [us...@httpd] [client 127.0.0.1] client denied byserverconfiguration: /srv/www/htdocs/

2009-02-18 Thread Anthony J. Biacco
That directory / deny will cause your 403 error, as well it should. I wouldn't remove it. If you want localhost to work, make sure the Directory block for /srv/www/htdocs/ you have is in the first virtualhost you have configured, as this is the virtualhost that apache will fall back on by default i

[us...@httpd] SQUID + APACHE

2009-02-18 Thread F.
Hello I have squid as accelerator, but I have a security problem with IP based access. Apache see all users as localhost. Any method to use X-forward-IP in Apache instead of normal IP? -- -- Publicidad http://www.pas-world.com -

RE: [us...@httpd] [client 127.0.0.1] client denied by serverconfiguration: /srv/www/htdocs/

2009-02-18 Thread James Pifer
On Wed, 2009-02-18 at 14:49 -0700, Anthony J. Biacco wrote: > Hmm..do you have a block that's maybe denying it, or lack > of one? Ok, found this in the main httpd.conf. The virtual servers are all includes. So is it "safe" to comment this out? # forbid access to the entire filesystem by default

RE: [us...@httpd] [client 127.0.0.1] client denied by serverconfiguration: /srv/www/htdocs/

2009-02-18 Thread Anthony J. Biacco
Hmm..do you have a block that's maybe denying it, or lack of one? Do you have a http(s) load balancer on the same machine that's probing apache for availability? That at least would explain the access log entries you quoted. -Tony --- Manager, IT Operations Format Dynamic

[us...@httpd] mod_proxy_ajp: too many (unused) connections to backend

2009-02-18 Thread Bastian Voigt
Hi, We're using apache httpd 2.2 with mod_proxy / mod_proxy_ajp as frontend for our Glassfish Java Application Server. We have multiple (four) ProxyPass rules in our virtual host configuration to forward different URIs to Glassfish, while other static content is served by apache directly.

Re: [us...@httpd] [client 127.0.0.1] client denied by server configuration: /srv/www/htdocs/

2009-02-18 Thread James Pifer
> First, it has nothing to do with the user under which Apache runs. > According to the message above, it is the /client/ that is being denied > by the server. It also says that the client is "calling" /from/ the > address 127.0.0.1, which is the localhost (the Apache machine itself). > So you h

Re: [us...@httpd] Proxy needs to rewrite parameters in QueryString

2009-02-18 Thread Nick Kew
On Wed, 18 Feb 2009 20:27:21 +0100 Andreas Dahlen wrote: > The rewrite statements was wrong (I accidently changed one / to ?), > should be "Location: > http://login.internal.com/LoginSuccess?servername=http://backend1.internal.c > om" > > Since RewriteRules doesn't operate on what goes out, is t

RE: [us...@httpd] [client 127.0.0.1] client denied by server configuration:/srv/www/htdocs/

2009-02-18 Thread James Pifer
On Wed, 2009-02-18 at 13:46 -0700, Anthony J. Biacco wrote: > A Deny restriction block in Apache? An .htaccess file put in htdocs that > has a Deny client restriction? > nope, no .htaccess file. Also the configuration is: AllowOverride None Order allow,deny Allow from all Thanks, Jame

Re: [us...@httpd] [client 127.0.0.1] client denied by server configuration: /srv/www/htdocs/

2009-02-18 Thread André Warnier
James Pifer wrote: I have apache2 running on a SLES10SP1 server. It's running several virtual hosts. One of our cgi-bin scripts stopped workyesterday for no apparent reason. While looking for the problem I found the error log for one of the sites gets the error constantly: [Wed Feb 18 14:00:04 20

RE: [us...@httpd] [client 127.0.0.1] client denied by server configuration:/srv/www/htdocs/

2009-02-18 Thread Anthony J. Biacco
A Deny restriction block in Apache? An .htaccess file put in htdocs that has a Deny client restriction? -Tony --- Manager, IT Operations Format Dynamics, Inc. 303-573-1800x27 abia...@formatdynamics.com http://www.formatdynamics.com -Original Message- From: James P

[us...@httpd] [client 127.0.0.1] client denied by server configuration: /srv/www/htdocs/

2009-02-18 Thread James Pifer
I have apache2 running on a SLES10SP1 server. It's running several virtual hosts. One of our cgi-bin scripts stopped workyesterday for no apparent reason. While looking for the problem I found the error log for one of the sites gets the error constantly: [Wed Feb 18 14:00:04 2009] [error] [client 1

SV: [us...@httpd] Proxy needs to rewrite parameters in QueryString

2009-02-18 Thread Andreas Dahlen
> > A succefull LoginRequest is redirected by the Location-header > > Location: http://login.internal.com?LoginSuccess?servername=http://backend1.internal.c om > > This isn't a legal URL. Is this really what is returned? > > RewriteRules don't operate on what goes out, only on what comes in. > Prox

Re: [us...@httpd] webdav LimitExcept Lightning

2009-02-18 Thread André Warnier
Marc Patermann wrote: Hi, I have a WebDAV directory (apache httpd 2.2.8; Ubuntu 8.04) with an .ics file in it. The .ics file is used with Thunderbird Lightning. Authorization is configured in an .htaccess file in the directory as follows: AuthBasicProvider file AuthType Basic Authname "name"

[us...@httpd] webdav LimitExcept Lightning

2009-02-18 Thread Marc Patermann
Hi, I have a WebDAV directory (apache httpd 2.2.8; Ubuntu 8.04) with an .ics file in it. The .ics file is used with Thunderbird Lightning. Authorization is configured in an .htaccess file in the directory as follows: AuthBasicProvider file AuthType Basic Authname "name" AuthUserFile /path/to/f

Re: [us...@httpd] SSL library error 336151570 in handshake w/ confirmed cert (CN=ServerName, valid, etc)

2009-02-18 Thread Peter Schober
* Szerdahelyi, Andras [2009-02-18 14:32]: > I've been struggling with this error for weeks now, and still havent > even got close to a solution. I have the following setup I'd suggest getting this to work with openssl s_client first. cheers, -peter --

Re: [us...@httpd] turn off basic authentication for one file

2009-02-18 Thread Peter Schober
* André Warnier [2009-02-18 18:18]: > I don't think it is a dumb question, because authentication tends to be > "sticky", and there are no directives like > AuthType None > or > Require None > or > Satisfy nothing But Allow from all Satisfy any should do, even if this is within a prote

Re: [us...@httpd] turn off basic authentication for one file

2009-02-18 Thread André Warnier
Jake Garfield wrote: Please forgive me if this is a dumb question, but is there a way to turn off basic authentication for ONE file? I suppose there is some type of .htaccess syntax for that. How would I do that? I don't think it is a dumb question, because authentication tends to be "sticky

Re: [us...@httpd] SSL library error 336151570 in handshake w/ confirmed cert (CN=ServerName, valid, etc)

2009-02-18 Thread Eric Covener
On Wed, Feb 18, 2009 at 8:31 AM, Szerdahelyi, Andras wrote: > My question is: how is this error invoked when my server cert is valid? > [Wed Feb 18 15:03:36 2009] [info] SSL Library Error: 336151570 > error:14094412:SSL routines:SSL3_READ_BYTES:sslv3 alert bad certificate > Subject CN in certifica

[us...@httpd] SSL library error 336151570 in handshake w/ confirmed cert (CN=ServerName, valid, etc)

2009-02-18 Thread Szerdahelyi, Andras
Hey list, I've been struggling with this error for weeks now, and still havent even got close to a solution. I have the following setup Server Linux gdshu2.XXX 2.6.18-92.el5 #1 SMP Tue Apr 29 13:16:12 EDT 2008 i686 i686 i386 GNU/Linux /usr/local/apache2/bin/httpd -v Server version: Apache/2.0.63

Re: [us...@httpd] Directory Listing only in Subdirectory

2009-02-18 Thread Eric Covener
On Wed, Feb 18, 2009 at 4:25 AM, Mirko Stocker wrote: > Hi > > I have problems getting the following setup to work: > > On my server, "Location /" is owned by mod_python, because I'm running a Trac > as the main site on this domain. Now I'd like to have a directory listing in > a subdirectory "Loc

Re: [us...@httpd] Jar file in Apache HTTP Server

2009-02-18 Thread Eric Covener
On Wed, Feb 18, 2009 at 7:11 AM, Manupriya wrote: > > Hi, > > I have a quick question, is it possible to deploy jar file on Apache HTTP > Server? If so then in which folder? Is there anyway that I can deploy a jar > as a resource (NOT AS AN APPLET) in the Apache HTTP Server? It's not really deplo

[us...@httpd] Re: confirm unsubscribe from users@httpd.apache.org

2009-02-18 Thread Rainer Sabelka
On Wednesday 18 February 2009 12:47:27 users-h...@httpd.apache.org wrote: > Hi! This is the ezmlm program. I'm managing the > users@httpd.apache.org mailing list. > > To confirm that you would like > >sabe...@iue.tuwien.ac.at > > removed from the users mailing list, please send a short reply >

[us...@httpd] Jar file in Apache HTTP Server

2009-02-18 Thread Manupriya
Hi, I have a quick question, is it possible to deploy jar file on Apache HTTP Server? If so then in which folder? Is there anyway that I can deploy a jar as a resource (NOT AS AN APPLET) in the Apache HTTP Server? For example, in case of Tomcat Server, we will have to put the jar file in the CAT

[us...@httpd] turn off basic authentication for one file

2009-02-18 Thread Jake Garfield
Please forgive me if this is a dumb question, but is there a way to turn off basic authentication for ONE file? I suppose there is some type of .htaccess syntax for that. How would I do that? thanks, -jg - The official U

Re: [us...@httpd] Authentication/Authorization using HTTP Server

2009-02-18 Thread Peter Schober
* Vasanth Kumar ravi [2009-02-18 03:06]: > Is it possible to have authentication implemented at the Apache HTTP Server > , using the Oracle database as Authorization provider. [...] > We would like to implement a custom login page at the Apache , which > would in turn refer the oracle db for autho

Re: [us...@httpd] Authentication/Authorization using HTTP Server

2009-02-18 Thread Peter Schober
* Vasanth Kumar ravi [2009-02-18 03:06]: > I did research on the same, and found that only file /dbm based > authentication is possible with HTTP Server No, have a look at the documentation, e.g. http://httpd.apache.org/docs/2.2/en/howto/auth.html As far as authenticating against an Oracle

Re: [us...@httpd] Directory Listing only in Subdirectory

2009-02-18 Thread Mirko Stocker
Hi On Wednesday 18 February 2009 10:38:52 Karel Kubat wrote: > Take a look at the Options configuration for your location where you > want Apache to generate the listing. My site uses > Options +Indexes Unfortunately, this doesn't change anything, I still get the error in the logfile and

[us...@httpd] Problem with accessing jar file on Apache server (jnlp)

2009-02-18 Thread Manupriya
Hi, I have a jar that contains some js files that I want to refer. I am using Apache HTTP Server 2.0.x I understand, I will have to configure a jnlp file for using the jar file on the Apache Server. I carried out the following steps: 1. I have a test.jar that contains a test.js which has a simp

Re: [us...@httpd] Directory Listing only in Subdirectory

2009-02-18 Thread Karel Kubat
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Mirko, On Feb 18, 2009, at 10:25 AM, Mirko Stocker wrote: I have problems getting the following setup to work: On my server, "Location /" is owned by mod_python, because I'm running a Trac as the main site on this domain. Now I'd like to have

[us...@httpd] Directory Listing only in Subdirectory

2009-02-18 Thread Mirko Stocker
Hi I have problems getting the following setup to work: On my server, "Location /" is owned by mod_python, because I'm running a Trac as the main site on this domain. Now I'd like to have a directory listing in a subdirectory "Location /releases", but I can't get it working. I was able to conf