From 4a6deb3955a660eb7d45ddb81d21cd3cc3fab010 Mon Sep 17 00:00:00 2001 From: Nilamdyuti Goswami Date: Tue, 14 Apr 2015 22:19:32 +0530 Subject: [PATCH] doc: Corrected the steps of Apache configuration for Debian-based distros in object gateway installation guide. Signed-off-by: Nilamdyuti Goswami --- doc/install/install-ceph-gateway.rst | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/doc/install/install-ceph-gateway.rst b/doc/install/install-ceph-gateway.rst index 85fcd0f4164..ded9f35d643 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:: -- 2.47.3