mirror of https://github.com/ceph/ceph
29 lines
774 B
Plaintext
29 lines
774 B
Plaintext
FastCgiExternalServer /var/www/s3gw.fcgi -socket /var/run/ceph/ceph.radosgw.gateway.fastcgi.sock
|
|
|
|
<VirtualHost *:80>
|
|
|
|
ServerName {fqdn}
|
|
<!--Remove the comment. Add a server alias with *.{fqdn} for S3 subdomains-->
|
|
<!--ServerAlias *.{fqdn}-->
|
|
ServerAdmin {email.address}
|
|
DocumentRoot /var/www
|
|
RewriteEngine On
|
|
RewriteRule ^/(.*) /s3gw.fcgi?%{QUERY_STRING} [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
|
|
|
|
<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
|
|
|
|
</VirtualHost> |