]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
doc: Added comment and example for SSL enablement in rgw.conf
authorJohn Wilkins <john.wilkins@inktank.com>
Mon, 13 Jan 2014 20:57:02 +0000 (12:57 -0800)
committerJohn Wilkins <john.wilkins@inktank.com>
Mon, 13 Jan 2014 20:57:02 +0000 (12:57 -0800)
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
doc/radosgw/config.rst

index 5cf437dc72d18bc2032af512847942eb70cc9aa7..9ae8ca53037dcfa90dd560baa8578d9f98a2f8b4 100644 (file)
@@ -119,7 +119,7 @@ See `<IfModule> Directive`_ for additional details.
 
 .. _<IfModule> Directive: http://httpd.apache.org/docs/2.2/mod/core.html#ifmodule
        
-Finally, you should configure Apache to allow encoded slashes, provide paths for
+You should configure Apache to allow encoded slashes, provide paths for
 log files and to turn off server signatures. ::        
 
        <VirtualHost *:80>      
@@ -132,6 +132,15 @@ log files and to turn off server signatures. ::
        
 .. important:: If you are using CentOS or similar, make sure that ``FastCgiWrapper`` is turned off in ``/etc/httpd/conf.d/fastcgi.conf``.
 
+Finally, if you enabled SSL, make sure that your configuration file  includes
+the following::
+
+       SSLEngine on
+       SSLCertificateFile /etc/apache2/ssl/apache.crt
+       SSLCertificateKeyFile /etc/apache2/ssl/apache.key
+       SetEnv SERVER_PORT_SECURE 443
+
+
 Enable the Configuration
 ========================