溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

LB與HA解決方案:nginx+keepalived

發(fā)布時(shí)間:2020-08-16 20:19:42 來源:ITPUB博客 閱讀:143 作者:安全劍客 欄目:建站服務(wù)器
nginx配置文件主要分成4部分
http (全局配置)
server (主機(jī)配置)
upstream (負(fù)載均衡服務(wù)器配置,在http配置范圍內(nèi))
location (url匹配特定位置的設(shè)置)
nginx實(shí)現(xiàn)的功能
1:反向代理
2:location/url重寫
3:web緩存
4:負(fù)載均衡
編輯配置文件,以反向代理的方式實(shí)現(xiàn)負(fù)載均衡
vim /etc/nginx/nginx.conf
upstream boke_web {
    server 192.168.1.135:80;
    server 192.168.1.136:80;
}
server {
    listen 443 http2;
    ssl on;
    server_name boke.wsfnk.com;
    ssl_certificate "/etc/pki/nginx/boke_server.crt";
    ssl_certificate_key "/etc/pki/nginx/private/boke_server.key";
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
    ssl_ciphers AESGCM:ALL:!DH:!EXPORT:!RC4:!3DES:+HIGH:!MEDIUM:!LOW:!aNULL:!eNULL;
    ssl_prefer_server_ciphers on;
    location / {
       proxy_pass http://boke_web;
    }
    error_page 404 /404.html;
       location = /40x.html {
       }
    error_page 500 502 503 504 /50x.html;
       location = /50x.html {
       }
}

配置好后,檢查nginx配置文件的語法

nginx -c /etc/nginx/nginx.conf -t


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI