Re: [users@httpd] HTTP authentication using HTTP

2011-01-11 Thread Scott Gifford
On Tue, Jan 11, 2011 at 4:52 AM, Anders Melchiorsen wrote: > Hi. > > I want to password protect some directories by forwarding the HTTP > authentication to a different URL. That is, rather than using LDAP or MySQL > as a backend, I want to use a CGI script (possibly on a different server). > You

[users@httpd] suexec and access errors

2011-01-11 Thread Detlef Vollmann
Hello, using suexec, it's possible that a file is not accessible by the apache user, but still accessible (through a script) to the HTTP client. So my configuration looks like this: ServerName test.host ServerAlias test.host.vollmann.ch DocumentRoot /test/www SuexecUserGroup wwwtest te

Re: [users@httpd] httpd ldap auth module

2011-01-11 Thread Shantanu Pavgi
I think mod_authnz_ldap is already included in the httpd package on CentOS/RH systems. It is enabled by default and you can check enabled/loaded modules using following command: '/usr/sbin/httpd -M'. -- Shantanu Pavgi. On Jan 11, 2011, at 5:18 PM, Carlos S wrote: > Hi, > > I am using CentO

[users@httpd] httpd ldap auth module

2011-01-11 Thread Carlos S
Hi, I am using CentOS 5.4 system with httpd 2.2.3-43.el5.centos.3. I am looking at LDAP module for Apache httpd for authentication. The 'yum install' gives me 'mod_authz_ldap.i386 0:0.26-9.el5_5.1', whereas on Apache documentation site I found mod_authNz_ldap module. Both modules appear to be diff

Re: [us...@httpd] HTTP authentication using HTTP

2011-01-11 Thread Anders Melchiorsen
On Tue, 11 Jan 2011 10:20:11 + (UTC), Igor Galić wrote: > - "Devraj Mukherjee" wrote: >> Depending on what the directories contains (eg. your app) I would >> nearly be tempted to using OAuth or one of the open authentication >> protocols. > > +1 on that. I want an easy way to password

Re: [us...@httpd] SQL Server authentication

2011-01-11 Thread Nilesh Govindarajan
On 01/11/2011 09:13 PM, Hendrik Schmieder wrote: Mark H. Wood schrieb: On Tue, Jan 11, 2011 at 06:06:16PM +0530, Nilesh Govindarajan wrote: On 01/11/2011 04:18 PM, Paolo DiCanio wrote: The example on that page is for MySql. Unfortunately when using SQL Server, the configuration is more complic

Re: [us...@httpd] SQL Server authentication

2011-01-11 Thread Hendrik Schmieder
Mark H. Wood schrieb: On Tue, Jan 11, 2011 at 06:06:16PM +0530, Nilesh Govindarajan wrote: On 01/11/2011 04:18 PM, Paolo DiCanio wrote: The example on that page is for MySql. Unfortunately when using SQL Server, the configuration is more complicated, because you can't simply configure DB

Re: [us...@httpd] SQL Server authentication

2011-01-11 Thread Mark H. Wood
On Tue, Jan 11, 2011 at 06:06:16PM +0530, Nilesh Govindarajan wrote: > On 01/11/2011 04:18 PM, Paolo DiCanio wrote: > > The example on that page is for MySql. Unfortunately when using SQL Server, > > the configuration is more complicated, because you can't simply configure > > > > DBDriver mss

Re: [users@httpd] Problem with ldap authentication against domino server

2011-01-11 Thread Eric Covener
> Or on the other hand, is it possible to tell mod_authnz_ldap to bind as the > user instead of anonymous to make the compare request? The manual tells you how to use a userid/password. - The official User-To-User support forum o

Re: [us...@httpd] SQL Server authentication

2011-01-11 Thread Nilesh Govindarajan
On 01/11/2011 04:18 PM, Paolo DiCanio wrote: The example on that page is for MySql. Unfortunately when using SQL Server, the configuration is more complicated, because you can't simply configure DBDriver mssql You have to use something called FreeTDS instead. If someone has actually got SQ

Re: [users@httpd] Problem with ldap authentication against domino server

2011-01-11 Thread Sebastian Reitenbach
Hi, On Thursday, January 06, 2011 03:36:13 pm Sebastian Reitenbach wrote: > Hi, > > I have LDAP authentication working against openldap. But I have to > authenticate against an Lotus Domino Server. > > below the contents of my .htaccess file: > > AuthType Basic > AuthBasicProvider ldap > AuthNa

Re: [us...@httpd] SQL Server authentication

2011-01-11 Thread Paolo DiCanio
The example on that page is for MySql. Unfortunately when using SQL Server, the configuration is more complicated, because you can't simply configure DBDriver mssql You have to use something called FreeTDS instead. If someone has actually got SQL Server authentication up and running, I'd rea

Re: [users@httpd] HTTP authentication using HTTP

2011-01-11 Thread Igor Galić
- "Devraj Mukherjee" wrote: > Hi Anders, > > Depending on what the directories contains (eg. your app) I would > nearly be tempted to using OAuth or one of the open authentication > protocols. +1 on that. I've been thinking of doing this kind of thing using things like: http://httpd.apach

Re: [us...@httpd] RewriteCond %{HTTPS} =on

2011-01-11 Thread Devraj Mukherjee
Condition satisfies if HTTPS protocol is in use. http://www.askapache.com/htaccess/http-https-rewriterule-redirect.html On Tue, Jan 11, 2011 at 7:01 PM, Tushar Chavan wrote: > Hi  Experts, > > I am bit confused with 'RewriteCond %{HTTPS} =on'. > > Can you please tell me, what is the function of

Re: [users@httpd] HTTP authentication using HTTP

2011-01-11 Thread Devraj Mukherjee
Hi Anders, Depending on what the directories contains (eg. your app) I would nearly be tempted to using OAuth or one of the open authentication protocols. I realise that its not the same as Basic authentication where the authenticated session is generated by another server. Just my two cents wor

[users@httpd] HTTP authentication using HTTP

2011-01-11 Thread Anders Melchiorsen
Hi. I want to password protect some directories by forwarding the HTTP authentication to a different URL. That is, rather than using LDAP or MySQL as a backend, I want to use a CGI script (possibly on a different server). Searching high and low has not helped me -- "http authentication" mostly tu

Re: [us...@httpd] SQL Server authentication

2011-01-11 Thread Nilesh Govindarajan
On 01/11/2011 02:28 PM, Paolo DiCanio wrote: Hi, My Apache server currently uses a passwd file for authentication. I need to change the authentication scheme so that it uses both this passwd file and a list of usernames and passwords stored in an SQL Server database table. In other words, if th

Re: [us...@httpd] SQL Server authentication

2011-01-11 Thread Devraj Mukherjee
Hi Paolo, I found this looking for a solution to my MySQL authentication post, might help. http://httpd.apache.org/docs/2.2/mod/mod_authn_dbd.html Says that it supports ODBC. Good luck. On Tue, Jan 11, 2011 at 7:58 PM, Paolo DiCanio wrote: > > Hi, > > My Apache server currently uses a passwd f

[us...@httpd] SQL Server authentication

2011-01-11 Thread Paolo DiCanio
Hi, My Apache server currently uses a passwd file for authentication. I need to change the authentication scheme so that it uses both this passwd file and a list of usernames and passwords stored in an SQL Server database table. In other words, if the username and password is found in the file,

Re: [users@httpd] Apache process not coming down and going high upto 259

2011-01-11 Thread Rainer Jung
On 11.01.2011 09:11, Amol Puglia wrote: Hello Rainer, Thanks for the valuable input. I have following mod_jk options configured for my web server. Is it possible to know if any of the below options are responsible for creating so many child processess and by removing any of them will reduce th

Re: [users@httpd] Apache process not coming down and going high upto 259

2011-01-11 Thread Amol Puglia
Hello Rainer, Thanks for the valuable input. I have following mod_jk options configured for my web server. Is it possible to know if any of the below options are responsible for creating so many child processess and by removing any of them will reduce the number of child processess. How do i

[us...@httpd] RewriteCond %{HTTPS} =on

2011-01-11 Thread Tushar Chavan
Hi Experts, I am bit confused with 'RewriteCond %{HTTPS} =on'. Can you please tell me, what is the function of RewriteCond %{HTTPS} =on? what 'RewriteCond %{HTTPS} =on' will do ? Best regards, Tushar