diff options
Diffstat (limited to 'docs/manual/ssl/ssl_faq.html.en')
-rw-r--r-- | docs/manual/ssl/ssl_faq.html.en | 34 |
1 files changed, 12 insertions, 22 deletions
diff --git a/docs/manual/ssl/ssl_faq.html.en b/docs/manual/ssl/ssl_faq.html.en index 0c06e5c8..5a34b3a3 100644 --- a/docs/manual/ssl/ssl_faq.html.en +++ b/docs/manual/ssl/ssl_faq.html.en @@ -9,7 +9,7 @@ <link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" /> <link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" /> <link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" /><link rel="stylesheet" type="text/css" href="../style/css/prettify.css" /> -<script src="../style/scripts/prettify.js" type="text/javascript"> +<script src="../style/scripts/prettify.min.js" type="text/javascript"> </script> <link href="../images/favicon.ico" rel="shortcut icon" /></head> @@ -176,11 +176,9 @@ relative hyperlinks?</a></li> fully-qualified hyperlinks (because you have to change the URL scheme). Using <code class="module"><a href="../mod/mod_rewrite.html">mod_rewrite</a></code> however, you can manipulate relative hyperlinks, to achieve the same effect.</p> - <pre class="prettyprint lang-config"> -RewriteEngine on + <pre class="prettyprint lang-config">RewriteEngine on RewriteRule ^/(.*)_SSL$ https://%{SERVER_NAME}/$1 [R,L] -RewriteRule ^/(.*)_NOSSL$ http://%{SERVER_NAME}/$1 [R,L] - </pre> +RewriteRule ^/(.*)_NOSSL$ http://%{SERVER_NAME}/$1 [R,L]</pre> <p>This rewrite ruleset lets you use hyperlinks of the form @@ -257,10 +255,8 @@ Certificate for testing purposes?</a></h3> -keyout server.key</strong></code><br /> These can be used as follows in your <code>httpd.conf</code> file: - <pre class="prettyprint lang-config"> -SSLCertificateFile /path/to/this/server.crt -SSLCertificateKeyFile /path/to/this/server.key - </pre> + <pre class="prettyprint lang-config">SSLCertificateFile /path/to/this/server.crt +SSLCertificateKeyFile /path/to/this/server.key</pre> </li> <li>It is important that you are aware that this @@ -338,10 +334,8 @@ SSLCertificateKeyFile /path/to/this/server.key <li>You should now have two files: <code>server.key</code> and <code>server.crt</code>. These can be used as follows in your <code>httpd.conf</code> file: - <pre class="prettyprint lang-config"> -SSLCertificateFile /path/to/this/server.crt -SSLCertificateKeyFile /path/to/this/server.key - </pre> + <pre class="prettyprint lang-config">SSLCertificateFile /path/to/this/server.crt +SSLCertificateKeyFile /path/to/this/server.key</pre> The <code>server.csr</code> file is no longer needed. </li> @@ -656,9 +650,7 @@ Virtual Hosting to identify different SSL virtual hosts?</a></h3> you must make sure to put the non-SSL port number on the NameVirtualHost directive, e.g.</p> - <pre class="prettyprint lang-config"> - NameVirtualHost 192.168.1.1:80 - </pre> + <pre class="prettyprint lang-config">NameVirtualHost 192.168.1.1:80</pre> <p>Other workaround solutions include: </p> @@ -709,11 +701,9 @@ Explorer (MSIE)?</a></h3> keep-alive connections or send the SSL close notify messages to MSIE clients. This can be done by using the following directive in your SSL-aware virtual host section:</p> - <pre class="prettyprint lang-config"> -SetEnvIf User-Agent "MSIE [2-5]" \ + <pre class="prettyprint lang-config">SetEnvIf User-Agent "MSIE [2-5]" \ nokeepalive ssl-unclean-shutdown \ - downgrade-1.0 force-response-1.0 - </pre> + downgrade-1.0 force-response-1.0</pre> <p>Further, some MSIE versions have problems with particular ciphers. Unfortunately, it is not possible to implement a MSIE-specific @@ -771,7 +761,7 @@ SetEnvIf User-Agent "MSIE [2-5]" \ command. Alternatively, you can append the following standard 1024-bit DH parameters from <a href="http://www.ietf.org/rfc/rfc2409.txt">RFC 2409</a>, section 6.2 to the respective - <code class="directive"><a href="../mod/ssl.html#sslcertificatefile">SSLCertificateFile</a></code> file:</p> + <code class="directive"><a href="../mod/mod_ssl.html#sslcertificatefile">SSLCertificateFile</a></code> file:</p> <div class="example"><pre>-----BEGIN DH PARAMETERS----- MIGHAoGBAP//////////yQ/aoiFowjTExmKLgNwc0SkCTgiKZ8x0Agu+pjsTmyJR Sgh5jjQE3e+VGbPNOkMbMCsKbfJfFDdP4TVtbVHCReSFtXZiXn7G9ExC6aY37WsL @@ -931,7 +921,7 @@ var comments_identifier = 'http://httpd.apache.org/docs/2.4/ssl/ssl_faq.html'; } })(window, document); //--><!]]></script></div><div id="footer"> -<p class="apache">Copyright 2013 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p> +<p class="apache">Copyright 2014 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p> <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!-- if (typeof(prettyPrint) !== 'undefined') { prettyPrint(); |