github.com/inflatablewoman/deis@v1.0.1-0.20141111034523-a4511c46a6ce/store/gateway/rgw.conf (about) 1 FastCgiExternalServer /var/www/s3gw.fcgi -socket /var/run/ceph/ceph.radosgw.gateway.fastcgi.sock 2 3 <VirtualHost *:8888> 4 5 ServerName deis-store-gateway 6 DocumentRoot /var/www 7 RewriteEngine On 8 RewriteRule ^/(.*) /s3gw.fcgi?%{QUERY_STRING} [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L] 9 10 <IfModule mod_fastcgi.c> 11 <Directory /var/www> 12 Options +ExecCGI 13 AllowOverride All 14 SetHandler fastcgi-script 15 Order allow,deny 16 Allow from all 17 AuthBasicAuthoritative Off 18 </Directory> 19 </IfModule> 20 21 AllowEncodedSlashes On 22 ErrorLog /dev/stdout 23 CustomLog /dev/stdout combined 24 ServerSignature Off 25 26 </VirtualHost>