HAproxy 是一套高效能分散式系統軟體,後端可搭配 Web 或 SQL 服務,這次在後端搭配 Nginx 出現 port redirect 問題,問題很簡單,在 Haproxy 設定 80 port 對應到內部三台 Nginx 機器,但是 Nginx port 設定 8080,這樣當我們在瀏覽網址如下:
http://aaa.bbb.ccc.ddd/test (請注意,最後沒有 slash 喔) 你會發現 Nginx 將網址轉成
http://aaa.bbb.ccc.ddd:8080/test/ 為了避免 Nginx 自動將 port 加入到網址列,我們可以透過設定 port_in_redirect,Nginx 預設將此設定為 On,所以將此設定為 off,並且重新啟動 Nginx 即可
port_in_redirect off;
See also
- 用 Nginx 來架設線上即時縮圖機
- 從 Nginx 換到 Caddy
- 在 Go 語言用一行程式碼自動化安裝且更新 Let’s Encrypt 憑證
- Caddy 搭配 Drone 伺服器設定
- 申請 Let’s Encrypt 免費憑證讓網站支援 HTTP2
- 將 wordpress 強制使用 SSL 連線
- Letsencrypt 開放申請免費 SSL 憑證
- Ngnix 搭配 PHP-FPM 噴 php5-fpm.sock failed (13: Permission denied)
- OSDC 2014 Talk: Introduction to Percona XtraDB Cluster and HAProxy
- 在 Ubuntu 或 Debian 上跑 Ruby on Rails + Nginx