Re: [users@httpd] RSA server certificate CommonName (CN) 'localhost.localdomain' does NOT match server name!?

2011-06-06 Thread Mark Montague
On June 6, 2011 13:19 , Joe Hansen wrote: I see the following error messages in the ssl_error_log file when I restart Apache: RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !? This means that the certificate in the file specified by the SSLCertificateFile directive

Re: [users@httpd] Installing httpd-2.2.15 with mod_ssl to use SSL Certificate files

2011-06-06 Thread Mark Montague
On June 6, 2011 19:29 , Sunil Rao wrote: We have installed httpd-2.2.15 with mod_ssl module. However, when we view mod_ssl.h, we do not see references to use SSL Certificate files (server.crt and server.key). We are new to the Apache Installation process, so please help us in understanding a

Re: [users@httpd] About file compression and transmission

2011-06-06 Thread Mark Montague
On June 6, 2011 23:06 , =?GB2312?B?y++/oQ==?= wrote: > The file is stored in text format prior to transmission is, every time > there is file access, > apache the file in memory after compression by gzip module to send to > the client. > That there is duplication of the same file read, compressio

[users@httpd] About file compression and transmission

2011-06-06 Thread 孙俊
About file compression and transmission I know that the text file you can use the apache module gzip compressed transmission. The file is stored in text format prior to transmission is, every time there is file access, apache the file in memory after compression by gzip module to send to the clie

Re: [users@httpd] Re: IfModule mod_expires.so

2011-06-06 Thread Igor Cicimov
Looks like you still don't understand what the problem is. Replace the line with or Removing ifModule statement will work of course since the one you have is wrong. Igor On Tue, Jun 7, 2011 at 10:33 AM, DW wrote: > Tom Evans wrote: > > On Mon, Jun 6, 2011 at 1:52 AM, DW wrote: > >> > > > >

[users@httpd] Re: IfModule mod_expires.so

2011-06-06 Thread DW
Tom Evans wrote: > On Mon, Jun 6, 2011 at 1:52 AM, DW wrote: >> > > is looking for a module file name or module name. In this > case, it would be either 'mod_expires.c' or 'expires_module'. > > It is enabled in my config file. I have already tried to do something like this but it is still no

[users@httpd] Installing httpd-2.2.15 with mod_ssl to use SSL Certificate files

2011-06-06 Thread Sunil Rao
Our aim is to use Apache with SSL Certificates. We have installed httpd-2.2.15 with mod_ssl module. However, when we view mod_ssl.h, we do not see references to use SSL Certificate files (server.crt and server.key). We are new to the Apache Installation process, so please help us in understandi

[users@httpd] Travel Assistance applications now open for ApacheCon NA 2011

2011-06-06 Thread Sander Temme
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 - -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The Apache Software Foundation (ASF)'s Travel Assistance Committee (TAC) is now accepting applications for ApacheCon North America 2011, 7-11 November in Vancouver BC, Canada. The TAC is seeking individ

[users@httpd] Trouble implementing webdav on FreeBSD

2011-06-06 Thread Jeff Shearer
Thanks again for your help. This is my first attempt to implement WebDav. I am using FreeBSD 7.2 and Apache 2.2.11. I am using cadaver on my Ubuntu 11.4 32 bit desktop. I am able to connect to the server from the CLI. When I type in “ls” I see my file, test.txt with a little star to the lef

[users@httpd] RSA server certificate CommonName (CN) 'localhost.localdomain' does NOT match server name!?

2011-06-06 Thread Joe Hansen
Hi there, I see the following error messages in the ssl_error_log file when I restart Apache: RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !? RSA server certificate CommonName (CN) 'localhost.localdomain' does NOT match server name!? I appreciate any pointers to solve

Re: [users@httpd] mod_rewrite, same filename matching rules are not processed

2011-06-06 Thread nik600
Ooook... there was a MultiViews directive. Thanksand sorry, regards. > > multiviews / mod_negotiation? > > - > The official User-To-User support forum of the Apache HTTP Server Project. > See http://httpd.apache.org/userslist

Re: [users@httpd] mod_rewrite, same filename matching rules are not processed

2011-06-06 Thread Eric Covener
On Mon, Jun 6, 2011 at 10:46 AM, nik600 wrote: > It seems that the problem is at the very beginning of the request: > > request to: > TestA/ab (ok): > add path info postfix: /var/www/test/TestA -> /var/www/test/TestA/ab > ... > ... > split uri=Test.php?request=ab -> uri=Test.php, args=request=ab >

Re: [users@httpd] mod_rewrite, same filename matching rules are not processed

2011-06-06 Thread nik600
It seems that the problem is at the very beginning of the request: request to: TestA/ab (ok): add path info postfix: /var/www/test/TestA -> /var/www/test/TestA/ab ... ... split uri=Test.php?request=ab -> uri=Test.php, args=request=ab ... ... [perdir /var/www/test/] pass through /var/www/test/Test.

Re: [users@httpd] mod_rewrite, same filename matching rules are not processed

2011-06-06 Thread nik600
> Are you sure it's really only 2.2.16 and not w/ additional patches? > Bug report 50349 is similar. > > A RewriteLog would help. > It is the standard package of the debian6 squeeze distribution. This is the RewriteLog level 3 [06/Jun/2011:16:08:00 +0200] [/sid#7f33f6c48638][rid#7f33f6fdfac0/subr

Re: [users@httpd] mod_rewrite, same filename matching rules are not processed

2011-06-06 Thread Eric Covener
On Mon, Jun 6, 2011 at 9:19 AM, nik600 wrote: > Dear all > > i'm not sure if this problem is related to a new feature or not of > apache 2.2.16, available in the new debian6 release. > > I had an htaccess file like this: > ## > RewriteEngine on > RewriteRule Tes

[users@httpd] mod_rewrite, same filename matching rules are not processed

2011-06-06 Thread nik600
Dear all i'm not sure if this problem is related to a new feature or not of apache 2.2.16, available in the new debian6 release. I had an htaccess file like this: ## RewriteEngine on RewriteRule Test/([^/]+)Test.php?request=$1 [L] ##

Re: [users@httpd] IfModule mod_expires.so

2011-06-06 Thread Tom Evans
On Mon, Jun 6, 2011 at 1:52 AM, DW wrote: > > > Why does this code never works properly on my server?  i.e. it freezes > my server and no pages are rendered. > > is looking for a module file name or module name. In this case, it would be either 'mod_expires.c' or 'expires_module'. Cheers Tom