欧美一区2区三区4区公司二百,国产精品婷婷午夜在线观看,自拍偷拍亚洲精品,国产美女诱惑一区二区

歡迎來到夢飛科技

服務器租用

當前優惠活動:

Nginx設置負載平衡進程及代碼分享,負載平衡實現道理

 負載平衡是我們大流量網站要做的一個對象,下面我來給各人先容在NGINX處事器長舉辦負載平衡設置要領,但愿對有需要的同學有所輔佐哦。負載平衡先來簡樸相識一下什么是負載平衡,單從字面上的意思來領略就可以表明N臺處事器平均分管負載,不會因為某臺處事器負載高宕機而某臺處事器閑置的環境。那么負載平衡的前提就是要有多臺處事器才氣實現,也就是兩臺以上即可。

直接上樂成的參數,實現了本機平衡并本機的NGINX也用起來:

A、主NGINX:

#user nobody;
worker_processes 1;

#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;

pid /var/run/nginx.pid;


events {
 worker_connections 1024;
}


http {
 include mime.types;
 default_type application/octet-stream;

 #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 logs/access.log main;

 sendfile on;
 #tcp_nopush on;

 #keepalive_timeout 0;
 keepalive_timeout 65;
 #gzip on;

upstream a.com{
# hash $cookie_jsessionid;
 hash $remote_addr consistent;
 server 192.168.142.128:8080 weight=3;
 server 192.168.142.129:80 weight=10;
# hash $cookie_jsessionid;
# server 192.168.142.130:80;
# ip_hash;
# hash_again 1;
# consistent_hash $remote_addr:可以按照客戶端ip映射
# consistent_hash $request_uri: 按照客戶端請求的uri映射
# consistent_hash $args:按照客戶端攜帶的參數舉辦映射
 }
server{
 listen 80;
 server_name a.com;
 location / {
 index index.html;
 root /usr/html;
 proxy_pass http://a.com;
 proxy_set_header Host $host;
 proxy_set_header X-Real-IP $remote_addr;
 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
 }

}

 server {
 listen 8080;
 server_name a.com;

 #access_log logs/host.access.log main;

 location / {
 root html;
 index index.html index.htm index.php;
 }

location ~ .*.(php|php5)?$
{
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/blog$fastcgi_script_name;
include fastcgi.conf;
}

location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}

location ~ .*.(js|css)?$
{
expires 12h;
}

access_log off;


 #error_page 404 /404.html;

 # redirect server error pages to the static page /50x.html
 #
 error_page 500 502 503 504 /50x.html;
 location = /50x.html {
 root html;
 }

 # proxy the PHP scripts to Apache listening on 127.0.0.1:80
 #
 #location ~ .php$ {
 # proxy_pass http://127.0.0.1;
 #}

 # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
 #
 #location ~ .php$ {
 # root html;
 # fastcgi_pass 127.0.0.1:9000;
 # fastcgi_index index.php;
 # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
 # include fastcgi_params;
 #}

 # deny access to .htaccess files, if Apache's document root
 # concurs with nginx's one
 #
 #location ~ /.ht {
 # deny all;
 #}
 }


 # another virtual host using mix of IP-, name-, and port-based configuration
 #
 #server {
 # listen 8000;
 # listen somename:8080;
 # server_name somename alias another.alias;

 # location / {
 # root html;
 # index index.html index.htm;
 # }
 #}


 # HTTPS server
 #
 #server {
 # listen 443 ssl;
 # server_name localhost;

 # ssl_certificate cert.pem;
 # ssl_certificate_key cert.key;

 # ssl_session_cache shared:SSL:1m;
 # ssl_session_timeout 5m;

 # ssl_ciphers HIGH:!aNULL:!MD5;
 # ssl_prefer_server_ciphers on;

 # location / {
 # root html;
 # index index.html index.htm;
 # }
 #}

}

夢飛科技 - 全球數據中心基礎服務領先供應商

Copyright © 2003-2019 MFISP.COM. 國外服務器租用 IDC公司 版權所有 ? 粵ICP備11019662號

主站蜘蛛池模板: 漳州市| 历史| 沈阳市| 谷城县| 惠水县| 襄汾县| 台北县| 休宁县| 宾川县| 兴国县| 宝丰县| 彩票| 西畴县| 六安市| 宜都市| 寻乌县| 泾源县| 防城港市| 巨野县| 和龙市| 巴林右旗| 红河县| 襄垣县| 宜宾市| 高雄县| 于都县| 泗水县| 申扎县| 贡嘎县| 旬阳县| 武强县| 贵溪市| 阳山县| 宝清县| 合作市| 渭源县| 石河子市| 伽师县| 临湘市| 浙江省| 张家川|