如何使用tenine/nginx替换apache2实现rgw前端
这篇文章将为大家详细讲解有关如何使用tenine/nginx替换apache2 实现rgw前端,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
在兴宁等地区,都构建了全面的区域性战略布局,加强发展的系统性、市场前瞻性、产品创新能力,以专注、极致的服务理念,为客户提供网站设计、做网站 网站设计制作按需开发网站,公司网站建设,企业网站建设,成都品牌网站建设,营销型网站建设,外贸网站制作,兴宁网站建设费用合理。
nginx配置
root@demo:~# cat /usr/local/nginx/conf/nginx.conf worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; client_max_body_size 0; sendfile on; keepalive_timeout 65; #gzip on; server { listen 80; server_name demo.ceph.work; #access_log logs/host.access.log main; location / { fastcgi_pass_header Authorization; fastcgi_pass_request_headers on; fastcgi_param QUERY_STRING $query_string; fastcgi_param REQUEST_METHOD $request_method; fastcgi_param CONTENT_LENGTH $content_length; fastcgi_param CONTENT_TYPE $content_type; if ($request_method = PUT) { rewrite ^ /PUT$request_uri; } include fastcgi_params; fastcgi_pass unix:/var/run/ceph/ceph-client.radosgw.sock; } location /PUT/ { internal; fastcgi_pass_header Authorization; fastcgi_pass_request_headers on; include fastcgi_params; fastcgi_param QUERY_STRING $query_string; fastcgi_param REQUEST_METHOD $request_method; fastcgi_param CONTENT_LENGTH $content_length; fastcgi_param CONTENT_TYPE $content_type; fastcgi_pass unix:/var/run/ceph/ceph-client.radosgw.sock; } }
ceph配置
[client.radosgw.cn-master-1] rgw DNS name = demo.ceph.work rgw frontends = fastcgi host = demo keyring = /etc/ceph/ceph.client.radosgw.keyring rgw socket path = /var/run/ceph/ceph-client.radosgw.sock log file = /var/log/ceph/radosgw.log rgw print continue = false rgw content length compat = true
关于如何使用tenine/nginx替换apache2 实现rgw前端就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
当前题目:如何使用tenine/nginx替换apache2实现rgw前端
当前链接:http://scyanting.com/article/pjohjp.html