在使用nginx做负载均衡的时候,结合ceph对象网关
1.ceph配置
ceph配置并没有做任何修改
2.nginx做配置
nginx配置
# For more information on configuration, see:# * Official English Documentation: http://nginx.org/en/docs/# * Official Russian Documentation: http://nginx.org/ru/docs/#user nginx;user root;#worker_processes 4;worker_processes auto;#worker_cpu_affinity 0001 0010 0100 1000;error_log /var/log/nginx/error.log;pid /var/run/nginx.pid;#worker_rlimit_nofile 204800;# Load dynamic modules. See /usr/share/nginx/README.dynamic.include /usr/share/nginx/modules/*.conf;events {worker_connections 2048000;}http {log_format main '$remote_addr - $remote_user [$time_local] "$request" ''$status $body_bytes_sent "$http_referer" ''"$http_user_agent" "$http_x_forwarded_for"';access_log /var/log/nginx/access.log main;sendfile on;tcp_nopush on;tcp_nodelay on;types_hash_max_size 2048;include /etc/nginx/mime.types;default_type application/octet-stream;charset utf-8;server_names_hash_bucket_size 8096;client_header_buffer_size 8096k;large_client_header_buffers 4 8096k;client_max_body_size 1000m;client_body_buffer_size 8m;keepalive_timeout 120;fastcgi_connect_timeout 300;fastcgi_send_timeout 300;fastcgi_read_timeout 300;fastcgi_buffer_size 10240k;fastcgi_buffers 16 10240k;fastcgi_busy_buffers_size 10240k;fastcgi_temp_file_write_size 10240k;fastcgi_cache_valid 200 302 1h;fastcgi_cache_valid 301 1d;fastcgi_cache_valid any 1m;fastcgi_cache_min_uses 1;fastcgi_cache_use_stale error timeout invalid_header http_500;open_file_cache max=204800 inactive=20s;open_file_cache_min_uses 1;open_file_cache_valid 30s;gzip on;gzip_min_length 1k;gzip_buffers 4 16k;gzip_http_version 1.0;gzip_comp_level 2;gzip_types text/plain application/x-javascript text/css application/xml;gzip_vary on;# Load modular configuration files from the /etc/nginx/conf.d directory.# See http://nginx.org/en/docs/ngx_core_module.html#include# for more information.include /etc/nginx/conf.d/*.conf;}
3.s3配置信息
upstream s3lb {server 192.168.1.61:7480 weight=1;server 192.168.1.62:7480 weight=1;server 192.168.1.63:7480 weight=1;}server {listen 80;server_name 192.168.1.64;access_log /var/log/nginx/s3lb.access.log main;error_log /var/log/nginx/s3lb.error.log;root html;index index.html index.htm index.php;## send request back to apache ##location / {proxy_pass http://s3lb;#Proxy Settingsproxy_redirect off;proxy_set_header Host $host;proxy_set_header X-Real-IP $remote_addr;proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;proxy_max_temp_file_size 0;proxy_connect_timeout 90;proxy_send_timeout 90;proxy_read_timeout 90;proxy_buffer_size 4k;proxy_buffers 4 32k;proxy_busy_buffers_size 64k;proxy_temp_file_write_size 64k;}}
