]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
doc: Corrected the steps of Apache configuration for Debian-based distros 4363/head
authorNilamdyuti Goswami <ngoswami@redhat.com>
Tue, 14 Apr 2015 16:49:32 +0000 (22:19 +0530)
committerNilamdyuti Goswami <ngoswami@redhat.com>
Tue, 14 Apr 2015 16:49:32 +0000 (22:19 +0530)
in object gateway installation guide.

Signed-off-by: Nilamdyuti Goswami <ngoswami@redhat.com>
doc/install/install-ceph-gateway.rst

index 85fcd0f41649c51af8a277ecab8977278061af11..ded9f35d643eabe28391e7c0fa70e118b51485a0 100644 (file)
@@ -52,26 +52,17 @@ Make the following changes in Apache's configuration on the ``gateway host``:
 Debian-based distros
 --------------------
 
-#. Open the ``apache2.conf`` file::
-
-       sudo vim /etc/apache2/apache2.conf
-
-#. Add a line for the ``ServerName`` in the Apache configuration file. Provide
+#. Add a line for the ``ServerName`` in ``/etc/apache2/apache2.conf``. Provide
    the fully qualified domain name of the server machine
    (e.g., ``hostname -f``)::
 
        ServerName {fqdn}
 
-#. Update ``/etc/apache2/apache2.conf`` to load ``mod_proxy_fcgi`` module. Add
-   the following to the file::
+#. Load ``mod_proxy_fcgi`` module.
 
-       <IfModule !proxy_fcgi_module>
-       LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so
-       </IfModule>
+   Execute::
 
-#. Edit the line ``Listen 80`` in ``/etc/apache2/apache2.conf`` with the public
-   IP address of the host that you are configuring as a gateway server. Write
-   ``Listen {IP ADDRESS}:80`` in place of ``Listen 80``.
+               sudo a2enmod proxy_fcgi
 
 #. Start Apache service::