From: Nilamdyuti Goswami Date: Fri, 17 Apr 2015 11:51:16 +0000 (+0530) Subject: doc: Removes references to s3gw.fcgi in simple gateway configuration file. X-Git-Tag: v9.0.2~132^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e36df0989609c11a93778835ceb70aa19329b950;p=ceph.git doc: Removes references to s3gw.fcgi in simple gateway configuration file. Fixes: #11396 Signed-off-by: Nilamdyuti Goswami --- diff --git a/doc/radosgw/config.rst b/doc/radosgw/config.rst index 1c7cf610e15..535482769df 100644 --- a/doc/radosgw/config.rst +++ b/doc/radosgw/config.rst @@ -233,40 +233,6 @@ the ``gateway host``. To do so, execute the following on ``admin node``:: ``gateway host``. -Create a CGI wrapper script -=========================== - -The wrapper script provides the interface between the webserver and the radosgw -process. This script needs to be in a web accessible location and should be -executable. - -Execute the following steps on the ``gateway host``: - -#. Create the script:: - - sudo vi /var/www/html/s3gw.fcgi - - -#. Add the following content to the script:: - - #!/bin/sh - exec /usr/bin/radosgw -c /etc/ceph/ceph.conf -n client.radosgw.gateway - - -#. Provide execute permissions to the script:: - - sudo chmod +x /var/www/html/s3gw.fcgi - - -Adjust CGI wrapper script permission -==================================== - -On some distros, ``apache`` should have execute permission on the ``s3gw.fcgi`` -script. To change permission on the file, execute:: - - sudo chown apache:apache /var/www/html/s3gw.fcgi - - Create Data Directory =====================