[EMAIL PROTECTED] mod_auth_ldap TLS Authoriztion

2006-01-20 Thread Muthu
Hi all, I am trying to use LDAP authentication using mod_auth_ldap module(ver 3.33) in apache 2.0.55. I have a .htaccess file like below, AuthType Basic AuthName "Password Required" AuthLDAPURL ldap://host.domain.net/dc=domain,dc=net?cn AuthLDAPStartTLS on require valid-use

[EMAIL PROTECTED] CGI's output buffered during file upload?

2006-01-20 Thread Anthony DiSante
Hello, I have a Perl CGI script that accepts file uploads via the usual POST method. The point of this script is that it implements a progress meter in the user's browser; during POST, the script writes info to a log file about how much data has been uploaded so far, and the browser uses AJAX

[EMAIL PROTECTED] Statically Linked Apache

2006-01-20 Thread Lyndon Tiu
What configure switch do I use to compile/link apache statically? So that if I do a "file httpd" I get something like this: "ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.2.5, statically linked, stripped" Instead of what I an getting right now: "ELF 32-bit LSB ex

Re: [EMAIL PROTECTED] Custom index page?

2006-01-20 Thread Joshua Slive
On 1/20/06, dthom <[EMAIL PROTECTED]> wrote: > How can i customize the default apache page (when you allow directory > browsing). I know i could use php and whatnot, but I would like to config > apache to do it. Start here: http://httpd.apache.org/docs/2.2/mod/mod_autoindex.html Joshua.

[EMAIL PROTECTED] Custom index page?

2006-01-20 Thread dthom
How can i customize the default apache page (when you allow directory browsing). I know i could use php and whatnot, but I would like to config apache to do it.Thanks.

Re: [EMAIL PROTECTED] AddOutputFilterByType MIME wildcards?

2006-01-20 Thread Olaf van der Spek
On 1/20/06, Axel-Stéphane SMORGRAV <[EMAIL PROTECTED]> wrote: > I never managed to make AddOutputFilterByType work properly for DEFLATE. > There is a Bugzilla report that basically says that it does not work and is > beyond salvation. What's the URL of the report? I've set it up on my server an

Re: [EMAIL PROTECTED] Auto Vhost question

2006-01-20 Thread Joshua Slive
On 1/20/06, Gary W. Smith <[EMAIL PROTECTED]> wrote: > Based on the vhost questions, I have a small dilemma. Overall the site > works as desired but some of the vhost's (using true vhost > configurations) have both www.domain.tld and domain.tld. So to make it > work with mod_vhost_alias I need to

RE: [EMAIL PROTECTED] Auto Vhost question

2006-01-20 Thread Gary W. Smith
Based on the vhost questions, I have a small dilemma. Overall the site works as desired but some of the vhost's (using true vhost configurations) have both www.domain.tld and domain.tld. So to make it work with mod_vhost_alias I need to create two directories. But only one directory has data (ww

RE: [EMAIL PROTECTED] ldaps authentication

2006-01-20 Thread Sturgis, Grant
> -Original Message- > From: Ricardo Stella [mailto:[EMAIL PROTECTED] > > > The default for ldap over ssl is on port 636. Is your ldap supporting > this or actually doing TLS on the standard port ? yes, our ldap server does ldaps over 636. In httpd.conf, I have tried just changing t

Re: [EMAIL PROTECTED] problem with mod_auth and mod_auth_pam working together

2006-01-20 Thread Joshua Slive
On 1/20/06, Jason Keltz <[EMAIL PROTECTED]> wrote: > How can I tell Apache with AuthAuthoritative turned off to "stop" after > mod_auth fails? How can I determine if there is some other authentication > it is secretly trying? You always need one authoritative auth module. If mod_auth is last in

Re: [EMAIL PROTECTED] environment-only rewrite rule

2006-01-20 Thread Joshua Slive
On 1/20/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I'm struggling to create a mod_rewrite rule which *doesn't* modify the > request - only changes an environment variable > > I tried - > > > RewriteRule . %{REQUEST_FILENAME} [L,E=KRB5CCNAME:%{ENV:REDIRECT_KRB5CCNAME}] > > > - but still it h

Re: [EMAIL PROTECTED] ldaps authentication

2006-01-20 Thread Ricardo Stella
The default for ldap over ssl is on port 636. Is your ldap supporting this or actually doing TLS on the standard port ? Sturgis, Grant wrote: >> From: Ricardo Stella [mailto:[EMAIL PROTECTED] >> > > >> What do logs show ? >> > > The error_log shows this: > > [Fri Jan 20 10:08:47

RE: [EMAIL PROTECTED] ldaps authentication

2006-01-20 Thread Sturgis, Grant
> From: Ricardo Stella [mailto:[EMAIL PROTECTED] > What do logs show ? The error_log shows this: [Fri Jan 20 10:08:47 2006] [warn] [client 10.10.233.101] [2056] auth_ldap authenticate: user jgood authentication failed; URI /servers/smtp0/smtp0.htm [LDAP: ldap_simple_bind_s() failed][Can't conta

Re: [EMAIL PROTECTED] ldaps authentication

2006-01-20 Thread Ricardo Stella
What do logs show ? Also, do you know if you are establishing a connection ? And, also, any permissions issue with the server reading the certificate ? Sturgis, Grant wrote: > No luck on this thread. Let me ask a different question: > > Is anyone using ldaps authentication - or ldap for that m

[EMAIL PROTECTED] problem with mod_auth and mod_auth_pam working together

2006-01-20 Thread Jason Keltz
I'm running Apache 1.3.34 along with mod_auth and mod_auth_pam. I am trying to make a link available to anyone in /etc/passwd or VIA mod_auth basic authentication. The .htaccess is as follows: AuthType Basic AuthUserFile /cs/home/jas/passwords AuthPAM_Enabled on AuthPAM_FallThrough on AuthAuthor

RE: [EMAIL PROTECTED] ldaps authentication

2006-01-20 Thread Sturgis, Grant
No luck on this thread. Let me ask a different question: Is anyone using ldaps authentication - or ldap for that matter? Anyone using ldaps to AD? Thanks, Grant --- > -Original Message- > From: Sturgis, Grant > Sent: Wednesday, January 18, 2006 2:12 PM > To: users@http

Re6: [EMAIL PROTECTED] stickysession at mod_proxy_balancer

2006-01-20 Thread dom
hi all, thanks, but have allready the newest one.. all patches allready included.. :-( it looks like he never checks the cookie for route! (there should be a few entrys into the log) no idear anymore.. [debug] mod_proxy_balancer.c(41): proxy: BALANCER: canonicalising URL //test/site [debug] mod

RE: [EMAIL PROTECTED] AddOutputFilterByType MIME wildcards?

2006-01-20 Thread Axel-Stéphane SMORGRAV
I never managed to make AddOutputFilterByType work properly for DEFLATE. There is a Bugzilla report that basically says that it does not work and is beyond salvation. You should try using mod_filter; that's what I ended up doing. Although mod_filter is an Apache 2.2 module, it is perfectly comp

[EMAIL PROTECTED] environment-only rewrite rule

2006-01-20 Thread ms419
I'm struggling to create a mod_rewrite rule which *doesn't* modify the request - only changes an environment variable I tried - RewriteRule . %{REQUEST_FILENAME} [L,E=KRB5CCNAME:%{ENV:REDIRECT_KRB5CCNAME}] - but still it has some weird side effects I'm using PHP SASL bindings - http://cgi.sfu

Re: [EMAIL PROTECTED] Follow symbolic links: report symbolic link names vs. real names

2006-01-20 Thread Joshua Slive
On 1/20/06, David Knecht <[EMAIL PROTECTED]> wrote: > I would like to configure Apache 2.0.52 on Linux to follow symbolic > links to directories. > > The directory names I am using are defined as symbolic links on the file > system. The "FollowSymLinks" parameter is configured in httpd.conf. > > Ac

Re: [EMAIL PROTECTED] Virtual directories

2006-01-20 Thread Joshua Slive
On 1/20/06, Muhammad Rizwan <[EMAIL PROTECTED]> wrote: > Hello > > Is it possible to add more then one Alias entry in one Virtual host, > e.g. > Alias /AliasDirectory "/to/my/path/in/DD" > Alias /AliasDir "/to/my/path/in/EE" Yes. You need to list the most specific entry first. Joshua. --

[EMAIL PROTECTED] AddOutputFilterByType MIME wildcards?

2006-01-20 Thread Olaf van der Spek
Hi, The documentation contains the sample AddOutputFilterByType DEFLATE text/html text/plain But is it also possible to use text/*?

[EMAIL PROTECTED] Follow symbolic links: report symbolic link names vs. real names

2006-01-20 Thread David Knecht
I would like to configure Apache 2.0.52 on Linux to follow symbolic links to directories. The directory names I am using are defined as symbolic links on the file system. The "FollowSymLinks" parameter is configured in httpd.conf. According to /var/log/httpd/error_log the symbolic links are f

RE: [EMAIL PROTECTED] php_admin_flag question

2006-01-20 Thread Graham Frank
Heh, what's funny is that the PHP docs actually suggest that (but using Directory). Anyway, I've come up with another solution, so this is resolved. -Graham Frank - The official User-To-User support forum of the Apache HTTP Se

Re: [EMAIL PROTECTED] php_admin_flag question

2006-01-20 Thread Joe Orton
On Wed, Jan 18, 2006 at 08:13:00PM -0600, Graham Frank wrote: > I am trying to restrict a open_basedir to the document root of the domain. > So I have the following in httpd.conf. > > > php_admin_value open_basedir / > open_basedir takes a filesystem path, that directive has no effect at all

Re: [EMAIL PROTECTED] Solaris SIGBUS and core on changes to mmap'd files

2006-01-20 Thread Joe Orton
On Thu, Jan 19, 2006 at 06:08:21PM -, Matt Willsher wrote: > I have a set up where by Apache serves static content from an NFS share. > This works ok most of the time but we have been getting occasional BUS > signals, resulting in core dump, when reading files. This apparently occurs > because

Re: [EMAIL PROTECTED] Virtual directories

2006-01-20 Thread Muhammad Rizwan
Hello Is it possible to add more then one Alias entry in one Virtual host, e.g. Alias /AliasDirectory "/to/my/path/in/DD" Alias /AliasDir "/to/my/path/in/EE" Thanks! On Tue, 2005-11-29 at 10:23, Nico wrote: > 2005/11/28, Muhammad Rizwan <[EMAIL PROTECTED]>: > > > Hello > > > > I want to ask abo

AW: Re4: [EMAIL PROTECTED] stickysession at mod_proxy_balancer

2006-01-20 Thread Oliver.Schaudt
hi dom, seems strange. Can it be any of the following issues from the bugzilla of apache url encoding cookie http://issues.apache.org/bugzilla/show_bug.cgi?id=34844 ProxyPassReverse doesn't change cookie paths http://issues.apache.org/bugzilla/show_bug.cgi?id=10722 or this on which was cha