diff options
author | John Wilkins <john.wilkins@inktank.com> | 2013-05-25 15:13:01 -0700 |
---|---|---|
committer | John Wilkins <john.wilkins@inktank.com> | 2013-05-25 15:13:01 -0700 |
commit | 615b54c6e4153d006456eee56de2b75ee29a4513 (patch) | |
tree | 8824ca89f50dbcefd00eb4bfff086e9bccbf6bd2 /doc | |
parent | 6f935419e694ef2334cf1244e9ecd3abf2042d38 (diff) | |
download | ceph-615b54c6e4153d006456eee56de2b75ee29a4513.tar.gz |
doc: Updated rgw.conf example.
fixes: #4608
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/start/rgw.conf | 40 |
1 files changed, 19 insertions, 21 deletions
diff --git a/doc/start/rgw.conf b/doc/start/rgw.conf index b2d9cb92cce..3e4878834c6 100644 --- a/doc/start/rgw.conf +++ b/doc/start/rgw.conf @@ -2,29 +2,27 @@ FastCgiExternalServer /var/www/s3gw.fcgi -socket /tmp/radosgw.sock <VirtualHost *:80> - ServerName {fqdn} - ServerAdmin {email.address} - DocumentRoot /var/www -</VirtualHost> -RewriteEngine On -RewriteRule ^/([a-zA-Z0-9-_.]*)([/]?.*) /s3gw.fcgi?page=$1¶ms=$2&%{QUERY_STRING} [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L] + ServerName {fqdn} + ServerAdmin {email.address} + DocumentRoot /var/www + RewriteEngine On + RewriteRule ^/([a-zA-Z0-9-_.]*)([/]?.*) /s3gw.fcgi?page=$1¶ms=$2&%{QUERY_STRING} [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L] -<VirtualHost *:80> + <IfModule mod_fastcgi.c> + <Directory /var/www> + Options +ExecCGI + AllowOverride All + SetHandler fastcgi-script + Order allow,deny + Allow from all + AuthBasicAuthoritative Off + </Directory> + </IfModule> - <IfModule mod_fastcgi.c> - <Directory /var/www> - Options +ExecCGI - AllowOverride All - SetHandler fastcgi-script - Order allow,deny - Allow from all - AuthBasicAuthoritative Off - </Directory> - </IfModule> + AllowEncodedSlashes On + ErrorLog /var/log/apache2/error.log + CustomLog /var/log/apache2/access.log combined + ServerSignature Off - AllowEncodedSlashes On - ErrorLog /var/log/apache2/error.log - CustomLog /var/log/apache2/access.log combined - ServerSignature Off </VirtualHost>
\ No newline at end of file |