主頁 > 知識(shí)庫 > 如何通過nginx負(fù)載均衡跳轉(zhuǎn)https

如何通過nginx負(fù)載均衡跳轉(zhuǎn)https

熱門標(biāo)簽:地圖標(biāo)注需要提交啥資料入駐 400電話申請(qǐng)找哪家公司 新鄉(xiāng)人工智能電話機(jī)器人加盟 福州呼叫中心外呼系統(tǒng)哪家好 昆明外呼系統(tǒng) 七大洲地圖標(biāo)注 地圖標(biāo)注w是什么方向 河南省鄭州市地圖標(biāo)注 臨汾電銷機(jī)器人費(fèi)用

web端拷貝證書與密鑰

   scp -rp -P52113 /application/nginx/conf/key 10.0.0.5:/application/nginx/conf/

在nginx負(fù)載均衡服務(wù)端配置

vim /application/nginx/conf/nginx.conf

worker_processes 2;
error_log logs/error.log;
events {
  worker_connections 65535;
}
http {
  include    mime.types;
  default_type application/octet-stream;
  sendfile    on;
  keepalive_timeout 65;
 
 
  upstream server_pools {
    server 10.0.0.200:443 weight=1 max_fails=3 fail_timeout=10;
    #server 10.0.0.8:443 weight=1 max_fails=3 fail_timeout=10;
    #server 10.0.0.9:443 weight=1 max_fails=3 fail_timeout=10;
  }
 
  server {
    listen    80;
    server_name localhost;
    rewrite ^(.*)$ https://$host$1 permanent;
  }
  server {
    listen 10.0.0.5:443;
    server_name www.abc.com;
 
    #開啟 https 注意要添加在server區(qū)塊 不能在http區(qū)塊中放置
    ssl on;
    ssl_certificate /application/nginx/conf/key/server.crt;
    ssl_certificate_key /application/nginx/conf/key/server.key;
 
    location / {
      proxy_pass https://server_pools;
      proxy_set_header Host $host;
      proxy_set_header X-Forwarded-For $remote_addr;
    }
  }
}

#檢查nginx負(fù)載均衡配置

   /application/nginx/sbin/nginx -t

#重啟nginx負(fù)載均衡

   /application/nginx/sbin/nginx -s stop
   /application/nginx/sbin/nginx

瀏覽器訪問測試

注意修改hosts對(duì)應(yīng)的是負(fù)載均衡的IP地址信息

訪問測試

訪問結(jié)果

標(biāo)簽:股票 烏海 岳陽 紅河 四川 臨沂 鎮(zhèn)江

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《如何通過nginx負(fù)載均衡跳轉(zhuǎn)https》,本文關(guān)鍵詞  如何,通過,nginx,負(fù)載,均衡,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《如何通過nginx負(fù)載均衡跳轉(zhuǎn)https》相關(guān)的同類信息!
  • 本頁收集關(guān)于如何通過nginx負(fù)載均衡跳轉(zhuǎn)https的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章