今天就跟大家聊聊有關(guān)Nginx負(fù)載均衡/SSL配置的實現(xiàn),可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
成都創(chuàng)新互聯(lián)自2013年創(chuàng)立以來,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項目成都做網(wǎng)站、成都網(wǎng)站設(shè)計網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元于洪做網(wǎng)站,已為上家服務(wù),為于洪各地企業(yè)和個人服務(wù),聯(lián)系電話:18982081108什么是負(fù)載均衡?
當(dāng)一個域名指向多臺web服務(wù)器時,添加一臺nginx負(fù)載均衡服務(wù)器,通過nginx負(fù)載均衡即可將來自于客戶端的請求均衡的發(fā)送給每臺web服務(wù)器,避免單臺服務(wù)器負(fù)載過高而其余服務(wù)器較為空閑的不均衡情況出現(xiàn)
配置nginx負(fù)載均衡:
在nginx機器上新建配置文件:
[root@centos02 ~]# vi /etc/nginx/conf.d/test.conf
添加如下內(nèi)容:
upstream test { ip_hash; server 192.168.0.10:80 weight=100; server 192.168.0.20:80 weight=50; } server { listen 80; server_name www.test.com; location / { proxy_pass http://test; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } }
upstream:負(fù)載均衡配置
test:自定義名,用于server{}中proxy_pass引用
ip_hash:將同一客戶端的所有請求發(fā)送給同一服務(wù)器(如不發(fā)送給同一服務(wù)器,有可能出現(xiàn)客戶端剛登陸網(wǎng)站,點擊其他子頁面又提示登陸)
server:web服務(wù)器地址
weight:定義權(quán)重(范圍0-100),負(fù)載均衡服務(wù)器優(yōu)先將請求發(fā)送給權(quán)重大的web服務(wù)器(以上示例如果有150條請求進來,192.168.0.10會被分配100條,192.168.0.20會被分配50條)
server_name:訪問網(wǎng)站的域名
proxy_pass:引用upstream定義的名稱
驗證nginx配置并重載:
[root@centos02 ~]# nginx -t nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful [root@centos02 ~]# nginx -s reload
接下來修改客戶端hosts文件將測試的域名www.test.com指向到測試的nginx負(fù)載均衡機器的IP即可訪問www.test.com網(wǎng)站。
負(fù)載均衡配置示例補充
1.根據(jù)請求的文件配置:
upstream aa { server 192.168.0.10; server 192.168.0.20; } upstream bb { server 192.168.0.100; server 192.168.0.101; } server { listen 80; server_name www.test.com; location ~ aa.php { proxy_pass http://aa/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } location ~ bb.php { proxy_pass http://bb/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } location / { proxy_pass http://bb/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } }
請求aa.php的,會到aa組,請求bb.php的會到bb組,其他請求全部到bb組,必須要有l(wèi)ocation / {} ,否則不能正確匹配url
2.根據(jù)請求的目錄配置:
upstream aa { server 192.168.0.10; server 192.168.0.20; } upstream bb { server 192.168.0.100; server 192.168.0.101; } server { listen 80; server_name www.test.com; location /dir1/ { proxy_pass http://aa/dir1/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } location /dir2/ { proxy_pass http://bb/dir2/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } location / { proxy_pass http://bb/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } }
#當(dāng)請求uri中匹配/dir1/,代理到aa/dir1/,匹配/dir2/或者其他時,代理到bb/dir2/
nginx配置SSL證書實現(xiàn)通過https協(xié)議訪問網(wǎng)站:
SSL證書申請網(wǎng)站:
1.https://www.wosign.com/
2.https://freessl.cn/(免費)
#通過瀏覽器生成后,需要在服務(wù)器創(chuàng)建證書文件
創(chuàng)建證書文件:
[root@linux ~]# mkdir /etc/nginx/ssl [root@linux ~]# cd !$ cd /etc/nginx/ssl [root@linux ssl]# touch ca [root@linux ssl]# touch test.crt [root@linux ssl]# touch test.key
#將證書申請網(wǎng)站提供的對應(yīng)證書的內(nèi)容添加到ca/ .crt/ .key文件中即可
編輯nginx配置文件:
[root@linux ~]# vi /etc/nginx/conf.d/bbs.conf
添加如下內(nèi)容:
listen 443 ssl; server_name test.bbs.com; ssl on; ssl_certificate /etc/nginx/ssl/test.crt; #定義.crt文件路徑 ssl_certificate_key /etc/nginx/ssl/test.key; #定義.key文件路徑 ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
驗證配置并重載nginx:
[root@linux ~]# nginx -t nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful [root@linux ~]# nginx -s reload
#接下來訪問網(wǎng)站地址欄即可顯示HTTPS
curl驗證方式:
curl -k -H "host:test.bbs.com" https://192.168.234.128/index.php
#host:域名,https:// webserver IP,輸出結(jié)果為網(wǎng)站頁面標(biāo)簽信息即表示成功
看完上述內(nèi)容,你們對Nginx負(fù)載均衡/SSL配置的實現(xiàn)有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計公司行業(yè)資訊頻道,感謝大家的支持。
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。