From: John Wilkins Date: Mon, 13 Jan 2014 20:57:02 +0000 (-0800) Subject: doc: Added comment and example for SSL enablement in rgw.conf X-Git-Tag: v0.77~24 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=90343708b3e2bc4178cee94d66d39c27d05de298;p=ceph.git doc: Added comment and example for SSL enablement in rgw.conf Signed-off-by: John Wilkins --- diff --git a/doc/radosgw/config.rst b/doc/radosgw/config.rst index 5cf437dc72d1..9ae8ca53037d 100644 --- a/doc/radosgw/config.rst +++ b/doc/radosgw/config.rst @@ -119,7 +119,7 @@ See ` Directive`_ for additional details. .. _ 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. :: @@ -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 ========================