如何通過nginx負載均衡跳轉https
web端拷貝證書與密鑰
scp -rp -P52113 /application/nginx/conf/key 10.0.0.5:/application/nginx/conf/
在nginx負載均衡服務端配置
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負載均衡配置
/application/nginx/sbin/nginx -t
#重啟nginx負載均衡
/application/nginx/sbin/nginx -s stop
/application/nginx/sbin/nginx
瀏覽器訪問測試
注意修改hosts對應的是負載均衡的IP地址信息
訪問測試
訪問結果
- nginx強制使用https訪問的方法(http跳轉到https)
- 詳解NGINX訪問https跳轉到http的解決方法
- 使用nginx方式實現(xiàn)http轉換為https的示例代碼
- Nginx域名轉發(fā)https訪問的實現(xiàn)
- Nginx將http轉換成https的詳細過程
- Nginx實現(xiàn)http自動跳轉到https
- Nginx配置HTTP強制跳轉到HTTPS的解決辦法
- nginx配置將HTTPS請求轉換成HTTP的方法實現(xiàn)
- Nginx強制跳轉Https(Http訪問跳轉Https)
- https如何通過nginx完成雙向認證轉發(fā)
- nginx實現(xiàn)http轉換為https的項目實踐
相關文章
Nginx+FastDFS搭建圖片服務器的方法實現(xiàn)
這篇文章主要介紹了Nginx+FastDFS搭建圖片服務器的方法實現(xiàn),文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2020-03-03Nginx實現(xiàn)不同域名輸出不同的服務器頭信息方法
這篇文章主要介紹了Nginx實現(xiàn)不同域名輸出不同的服務器頭信息方法,本文使用了一個ngx_headers_more模塊實現(xiàn)這個特殊需求,需要的朋友可以參考下2015-02-02Nginx報錯host not found in upstream的解決辦法
本文主要介紹了Nginx報錯host not found in upstream的解決辦法,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2023-08-08centos7下基于nginx+uwsgi部署Django項目的實現(xiàn)
Django是一個開源的Web應用框架,使用Python語言編寫,主要用于搭建Web項目,本教程介紹如何在centos7下基于nginx+uwsgi部署Django項目的實現(xiàn),感興趣的可以了解一下2024-04-04