You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2005/04/19 15:09:44 UTC

svn commit: r161883 - httpd/httpd/trunk/docs/conf/extra/httpd-ssl.conf.in

Author: jorton
Date: Tue Apr 19 06:09:43 2005
New Revision: 161883

URL: http://svn.apache.org/viewcvs?view=rev&rev=161883
Log:
* docs/conf/extra/httpd-ssl.conf.in: Don't reference directories which
aren't created by "make install".  Use BrowserMatch.

Modified:
    httpd/httpd/trunk/docs/conf/extra/httpd-ssl.conf.in

Modified: httpd/httpd/trunk/docs/conf/extra/httpd-ssl.conf.in
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/docs/conf/extra/httpd-ssl.conf.in?view=diff&r1=161882&r2=161883
==============================================================================
--- httpd/httpd/trunk/docs/conf/extra/httpd-ssl.conf.in (original)
+++ httpd/httpd/trunk/docs/conf/extra/httpd-ssl.conf.in Tue Apr 19 06:09:43 2005
@@ -96,16 +96,16 @@
 #   in mind that if you have both an RSA and a DSA certificate you
 #   can configure both in parallel (to also allow the use of DSA
 #   ciphers, etc.)
-SSLCertificateFile @exp_sysconfdir@/ssl.crt/server.crt
-#SSLCertificateFile @exp_sysconfdir@/ssl.crt/server-dsa.crt
+SSLCertificateFile @exp_sysconfdir@/server.crt
+#SSLCertificateFile @exp_sysconfdir@/server-dsa.crt
 
 #   Server Private Key:
 #   If the key is not combined with the certificate, use this
 #   directive to point at the key file.  Keep in mind that if
 #   you've both a RSA and a DSA private key you can configure
 #   both in parallel (to also allow the use of DSA ciphers, etc.)
-SSLCertificateKeyFile @exp_sysconfdir@/ssl.key/server.key
-#SSLCertificateKeyFile @exp_sysconfdir@/ssl.key/server-dsa.key
+SSLCertificateKeyFile @exp_sysconfdir@/server.key
+#SSLCertificateKeyFile @exp_sysconfdir@/server-dsa.key
 
 #   Server Certificate Chain:
 #   Point SSLCertificateChainFile at a file containing the
@@ -114,7 +114,7 @@
 #   the referenced file can be the same as SSLCertificateFile
 #   when the CA certificates are directly appended to the server
 #   certificate for convinience.
-#SSLCertificateChainFile @exp_sysconfdir@/ssl.crt/ca.crt
+#SSLCertificateChainFile @exp_sysconfdir@/server-ca.crt
 
 #   Certificate Authority (CA):
 #   Set the CA certificate verification path where to find CA
@@ -218,7 +218,7 @@
 #   Similarly, one has to force some clients to use HTTP/1.0 to workaround
 #   their broken HTTP/1.1 implementation. Use variables "downgrade-1.0" and
 #   "force-response-1.0" for this.
-SetEnvIf User-Agent ".*MSIE.*" \
+BrowserMatch ".*MSIE.*" \
          nokeepalive ssl-unclean-shutdown \
          downgrade-1.0 force-response-1.0