RE: [us...@httpd] mod_authnz_ldap with kerberos?

2010-10-20 Thread Assarsson, Emil
>> I use mod_authnz_ldap today with simple ldap bind. >> Our security team wants me to use to use Kerberos instead to make it more >> secure. >> This will allow them to specify from where the service account can login and >> will also protect the credentials from eavesdropping. >> Is it possible

Re: [users@httpd] Weird behaviour of Apache

2010-10-20 Thread Daniel Reinhardt
-Original Message- From: Michelle Konzack Sent: 21 October, 2010 0:37 To: Apache EN Subject: [us...@httpd] Weird behaviour of Apache // Restarting web server: apache2no listening sockets available, shutting down Unable to open logs failed! invoke-rc.d: initscript apache2, action "start"

Re: [us...@httpd] Weird behaviour of Apache

2010-10-20 Thread Eric Covener
> Restarting web server: apache2no listening sockets available, shutting down > >    Listen 443 > You need to define at least 1 Listen directive. This is the only one in your post, and it's obviously not part of your config due to absence of mod_ssl. -- Eric Covener cove...@gmail.com ---

[us...@httpd] Weird behaviour of Apache

2010-10-20 Thread Michelle Konzack
Hello *, I have reinstalled Debian/Lenny and apache and disabled all VHosts except but now I get following Error: [ command 'invoke-rc.d apache2 start' ]- Restarting web server: apache2no listening sockets available, shutting down Unable to open logs failed

RE: [us...@httpd] Host-header from requests are ignored? [solved]

2010-10-20 Thread mabra
Hi All ! I really have had not understand how far the consistence of properties have to be driven . Now, I have a) in debians ports.conf: NameVirtualHost 192.168.26.92:80 b) in httpd.conf: #ServerName localhost #ServerAlias localhost DocumentRoot /var/www/block Options Indexes Follow

[users@httpd] Apache rewriterule generator with multiple null query string

2010-10-20 Thread Arunkumar Janarthanan
Hi All, Do we have any tool that can generate based on the input / rule I select ? I have an URL that contain a query string. The condition should check if the query string parameter is Null and Or the query string parameter is not passed at all should go to a specific page ? Please advice. Best

Re: [us...@httpd] Host-header from requests are ignored?

2010-10-20 Thread Joost de Heer
Anyway, which host-header I specify - any valid ip-address pointing to this machine - strands in the same directory! What's the output of 'httpd -S'? Joost - The official User-To-User support forum of the Apache HTTP Server Pr

Re: [us...@httpd] Host-header from requests are ignored?

2010-10-20 Thread Eric Covener
> Anyway, which host-header I specify - any valid ip-address pointing to this > machine - strands in the same directory! http://httpd.apache.org/docs/current/mod/core.html#namevirtualhost -- Eric Covener cove...@gmail.com - The

RE: [us...@httpd] Host-header from requests are ignored?

2010-10-20 Thread mabra
Hi ! Thanks for your reply! I read the docs several times and, again today, read several hours tips from groups in the internet, without any help. I just now made a VM with debian and put the following in httpd.conf and left off debians's enabled-sites and available-sites directories:

Re: [us...@httpd] Re: [announce] Apache HTTP Server 2.2.17 and 2.0.64 Released

2010-10-20 Thread William A. Rowe Jr.
On 10/20/2010 1:44 AM, Matus UHLAR - fantomas wrote: > On 19.10.10 11:27, William A. Rowe Jr. wrote: >> Subject: [announce] Apache HTTP Server 2.2.17 and 2.0.64 Released > >>The Apache Software Foundation and the Apache HTTP Server Project are >>pleased to announce the release of version 2

Re: [users@httpd] MOD_PROXY Open CSV Content Into Excel

2010-10-20 Thread Rainer Jung
On 20.10.2010 17:50, Todd Simons wrote: Hello All We develop web applications using Weblogic and JSP pages. Our web app has the functionality to export to excel where data is pulled from a database and presented to the web client, at that point the web client recognizes the content stream and op

Re: [us...@httpd] Re-use of a Setenv directive

2010-10-20 Thread Rainer Jung
On 20.10.2010 17:04, Igor Galić wrote: - "J.Lance Wilkinson" wrote: Rainer Jung wrote: If the values are in fact static, i.e. do not depend in the request, virtual host etc., you can actually use the fact, that Apache allows you to resolve unix environment variables (not the same as

Re: [us...@httpd] Apache with MPI?

2010-10-20 Thread Mark Watts
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 10/20/2010 04:34 PM, Daniel Theisen wrote: > Was this in the correct mailinglist? I checked the mailinglist rules, > and it didn't seem like a problem asking here. > > -- Daniel Theisen > > On Thu, 14 Oct 2010 21:06:09 -0400 Daniel Theisen > wrot

[users@httpd] MOD_PROXY Open CSV Content Into Excel

2010-10-20 Thread Todd Simons
Hello All We develop web applications using Weblogic and JSP pages. Our web app has the functionality to export to excel where data is pulled from a database and presented to the web client, at that point the web client recognizes the content stream and opens excel with the CSV file. The cod

Re: [us...@httpd] Apache with MPI?

2010-10-20 Thread Daniel Theisen
Was this in the correct mailinglist? I checked the mailinglist rules, and it didn't seem like a problem asking here. -- Daniel Theisen On Thu, 14 Oct 2010 21:06:09 -0400 Daniel Theisen wrote: > Hello, > > I was wondering if there is any implementation of the Apache Webserver that > utilizes

Re: [us...@httpd] Re-use of a Setenv directive

2010-10-20 Thread Sébastien Moretti
Hi I have defined a SetEnv Directive this way: SetEnv BASE_PATH /tmp/smthg I would like to re-use this variable in another SetEnv Directive, e.g.: SetEnv PATHS $BASE_PATH/a:$BASE_PATH/b:$BASE_PATH/c:... But $BASE_PATH is not interpreted as a variable. I tried with quotes, back-splash, ... Ho

Re: [us...@httpd] Re-use of a Setenv directive

2010-10-20 Thread Igor Galić
- "J.Lance Wilkinson" wrote: > Rainer Jung wrote: > > If the values are in fact static, i.e. do not depend in the request, > > > virtual host etc., you can actually use the fact, that Apache allows > you > > to resolve unix environment variables (not the same as Apache > > environment var

Re: [us...@httpd] Re-use of a Setenv directive

2010-10-20 Thread J.Lance Wilkinson
Rainer Jung wrote: If the values are in fact static, i.e. do not depend in the request, virtual host etc., you can actually use the fact, that Apache allows you to resolve unix environment variables (not the same as Apache environment variables) inside the Apache configuration. The syntax is $

Re: [users@httpd] Re-use of a Setenv directive

2010-10-20 Thread Rainer Jung
On 20.10.2010 14:49, Sébastien Moretti wrote: Hi I have defined a SetEnv Directive this way: SetEnv BASE_PATH /tmp/smthg I would like to re-use this variable in another SetEnv Directive, e.g.: SetEnv PATHS $BASE_PATH/a:$BASE_PATH/b:$BASE_PATH/c:... But $BASE_PATH is not interpreted as a varia

Re: [users@httpd] Re-use of a Setenv directive

2010-10-20 Thread David (Dave) Donnan
Oups my test cases weren't tidy. from vhost443.conf: SetEnvIf "LA-U:REMOTE_PORT" "(.*)" A_SETENVIF_LA_U_REMOTE_PORT=$1 SetEnvIf %{LA-U:REMOTE_PORT} "(.*)" A_SETENVIF_LA_U_REMOTE_PORT_PERCENT=$1 SetEnvIf ${LA-U:RE

Re: [users@httpd] Re-use of a Setenv directive

2010-10-20 Thread Sébastien Moretti
Hello Dave, thanks for your help. In fact, I just want to define BASE_PATH in order to re-use it in PATHS. PATHS contains several times BASE_PATH and I would like to change BASE_PATH value once instead of several times in PATHS. Sébastien, hello. I don't have a solution for you but I'm waiti

Re: [users@httpd] Re-use of a Setenv directive

2010-10-20 Thread David (Dave) Donnan
Sébastien, hello. I don't have a solution for you but I'm waiting for a similar reply. I hope the following helps: From my e-mail thread entitled, 'Setting CGI environment variables, dynamically, from httpd.conf leveraging exising variables': ... 2. Technique 2: setenv DAVESETENV "text" ---

Re: [us...@httpd] Re: [announce] Apache HTTP Server 2.2.17 and 2.0.64 Released

2010-10-20 Thread Rainer Jung
On 20.10.2010 11:47, Igor Galić wrote: - "Matus UHLAR - fantomas" wrote: On 19.10.10 11:27, William A. Rowe Jr. wrote: Subject: [announce] Apache HTTP Server 2.2.17 and 2.0.64 Released The Apache Software Foundation and the Apache HTTP Server Project are pleased to announce

RE: [us...@httpd] SSL vulnerability question

2010-10-20 Thread Edwards, Denise
Thanks. -Original Message- From: Matus UHLAR - fantomas [mailto:uh...@fantomas.sk] Sent: Wednesday, October 20, 2010 3:54 AM To: users@httpd.apache.org Subject: Re: [us...@httpd] SSL vulnerability question > - "Denise Edwards" wrote: > > Received security can results which had two i

[users@httpd] Re-use of a Setenv directive

2010-10-20 Thread Sébastien Moretti
Hi I have defined a SetEnv Directive this way: SetEnv BASE_PATH /tmp/smthg I would like to re-use this variable in another SetEnv Directive, e.g.: SetEnv PATHS $BASE_PATH/a:$BASE_PATH/b:$BASE_PATH/c:... But $BASE_PATH is not interpreted as a variable. I tried with quotes, back-splash,

Re: [us...@httpd] mod_authnz_ldap with kerberos?

2010-10-20 Thread Brett Delle Grazie
Hi, On Wed, 2010-10-20 at 12:27 +0200, Assarsson, Emil wrote: > Hi all, > > I use mod_authnz_ldap today with simple ldap bind. > Our security team wants me to use to use Kerberos instead to make it more > secure. > This will allow them to specify from where the service account can login and > wi

[us...@httpd] mod_authnz_ldap with kerberos?

2010-10-20 Thread Assarsson, Emil
Hi all, I use mod_authnz_ldap today with simple ldap bind. Our security team wants me to use to use Kerberos instead to make it more secure. This will allow them to specify from where the service account can login and will also protect the credentials from eavesdropping. Is it possible to make

Re: [us...@httpd] Re: [announce] Apache HTTP Server 2.2.17 and 2.0.64 Released

2010-10-20 Thread Igor Galić
- "Matus UHLAR - fantomas" wrote: > On 19.10.10 11:27, William A. Rowe Jr. wrote: > > Subject: [announce] Apache HTTP Server 2.2.17 and 2.0.64 Released > > >The Apache Software Foundation and the Apache HTTP Server Project > are > >pleased to announce the release of version 2.2.17 o

Re: [us...@httpd] SSL vulnerability question

2010-10-20 Thread Matus UHLAR - fantomas
> - "Denise Edwards" wrote: > > Received security can results which had two issues: > > > > 1-SSL Server Supports Weak Encryption Vulnerability > > > > 2-SSL Server Has SSLv2 Enabled Vulnerability [...] > > - SSLCipherSuite property includes high, medium, low and SSLv2 On 18.10.10 17:25, Ig