From: Nilamdyuti Goswami Date: Tue, 14 Apr 2015 16:49:32 +0000 (+0530) Subject: doc: Corrected the steps of Apache configuration for Debian-based distros X-Git-Tag: v9.0.1~136^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F4363%2Fhead;p=ceph.git doc: Corrected the steps of Apache configuration for Debian-based distros in object gateway installation guide. Signed-off-by: Nilamdyuti Goswami --- diff --git a/doc/install/install-ceph-gateway.rst b/doc/install/install-ceph-gateway.rst index 85fcd0f41649..ded9f35d643e 100644 --- a/doc/install/install-ceph-gateway.rst +++ b/doc/install/install-ceph-gateway.rst @@ -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. - - LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so - + 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::