爛泥:haproxy與nginx、zabbix集成

本文由ilanniweb提供友情贊助,首發於爛泥行天下nginx

想要得到更多的文章,能夠關注個人微信ilanniweb。web

昨天介紹了haproxy的手機匹配規則,今天再來介紹下haproxy與nginx、zabbix的集成。接下來我會詳細介紹haproxy與nginx目錄瀏覽功能的集成,與zabbix集成我會把haproxy配置貼出來。redis

1、業務需求

因爲業務需求,如今要把服務器上的部分目錄暴露出去,讓其它系統來調用暴露出去的文件,可是如今要求對外提供的仍是80端口的http服務。apache

分析:後端

要達到上述的要求,首先咱們要提供目錄瀏覽的功能,這個咱們可使用apache或者nginx的目錄瀏覽功能。在此,咱們使用的是nginx的目錄瀏覽功能(即nginx的目錄索引功能)。服務器

而後讓haproxy反向代理到nginx,就能夠實現業務的需求。微信

2、nginx配置

nginx的安裝在此就不列出了,下面咱們直接看nginx的配置文件。以下:app

user nginx;frontend

worker_processes 1;ide

error_log /var/log/nginx/error.log warn;

pid /var/run/nginx.pid;

events {

worker_connections 1024;

}

http {

include /etc/nginx/mime.types;

default_type application/octet-stream;

log_format main '$remote_addr - $remote_user [$time_local] "$request" '

'$status $body_bytes_sent "$http_referer" '

'"$http_user_agent" "$http_x_forwarded_for"';

access_log /var/log/nginx/access.log main;

sendfile on;

keepalive_timeout 65;

gzip on;

server {

listen 8088;

server_name 127.0.0.1;

charset utf-8;

access_log /var/log/nginx/log/host.access.log main;

location /testnginx/ {

root /data/;

autoindex on;

}

}

}

clip_p_w_picpath001

nginx如今咱們定義的是監聽8088這個端口,並且對外開放的是/data下的是testnginx這個目錄。

注意:這個對外的目錄名稱必定要記住,這個名稱咱們在haproxy匹配規則中會使用到。

nginx配置完畢後,咱們選擇來查看下起目錄瀏覽功能。以下:

http://http.ilanni.com:8088/testnginx/

clip_p_w_picpath002

經過上圖,咱們能夠很明顯的看出nginx的目錄瀏覽已經徹底沒有問題。

3、haproxy配置

nginx配置完畢後,咱們如今來配置haproxy。haproxy的配置就很簡單了。

只須要根據客戶端請求的url中匹配目錄的名稱便可。具體配置文件以下:

global

log 127.0.0.1 local0

log 127.0.0.1 local1 notice

maxconn 4096

uid 188

gid 188

daemon

tune.ssl.default-dh-param 2048

defaults

log global

mode http

option httplog

option dontlognull

option http-server-close

option forwardfor except 127.0.0.1

option redispatch

retries 3

option redispatch

maxconn 2000

timeout http-request 10s

timeout queue 1m

timeout connect 10s

timeout client 1m

timeout server 1m

timeout http-keep-alive 10s

timeout check 10s

maxconn 3000

listen admin_stats

bind 0.0.0.0:1080

mode http

option httplog

maxconn 10

stats refresh 30s

stats uri /stats

stats auth admin:admin

stats hide-version

frontend weblb

bind *:80

acl is_nginx url_beg /testnginx

acl is_http hdr_beg(host) http.ilanni.com

use_backend nginxserver if is_nginx is_http

use_backend httpserver if is_http

backend httpserver

balance source

server web1 127.0.0.1:8080 maxconn 1024 weight 3 check inter 2000 rise 2 fall 3

backend nginxserver

balance source

server web1 127.0.0.1:8088 maxconn 1024 weight 3 check inter 2000 rise 2 fall 3

clip_p_w_picpath003

在haproxy配置文件中,咱們定義了一個is_nginx規則,該規則匹配的是以testnginx目錄開始的url,而後把該規則轉發到後端的nginxserver服務器組,而nginxserver服務器組就是nginx服務器。

這樣就完成了nginx與haproxy集成。

注意:在這有一點必定要注意啦,haproxy匹配目錄的時候,後端的服務器組必定要存在該目錄,不然會報404錯誤的。這個是我踩過不少坑後才知道的。

4、測試集成功能

nginx與haproxy集成配置完畢後,咱們選擇來訪問http://http.ilanni.com/testnginx/測試其功能,以下:

clip_p_w_picpath004

經過上圖,咱們能夠很明顯的看出haproxy已經完美的和nginx目錄瀏覽功能集成了。

5、haproxy與zabbix集成

前幾章節咱們講解了haproxy與nginx進行集成的功能,在這一章節,咱們再來介紹下haproxy與zabbix集成的功能。

zabbix在此咱們是使用的yum方式進行安裝的,安裝完畢後apache監聽的是8099端口。訪問形式以下:

http://zabbix.ilanni.com:8099/zabbix/

clip_p_w_picpath005

如今要求直接使用80端口訪問zabbix,haproxy具體配置以下:

global

log 127.0.0.1 local0

log 127.0.0.1 local1 notice

maxconn 4096

uid 188

gid 188

daemon

defaults

log global

mode http

option httplog

option dontlognull

option http-server-close

option forwardfor except 127.0.0.1

option redispatch

retries 3

option redispatch

maxconn 2000

timeout http-request 10s

timeout queue 1m

timeout connect 10s

timeout client 1m

timeout server 1m

timeout http-keep-alive 10s

timeout check 10s

maxconn 3000

listen admin_stats

bind 0.0.0.0:1080

mode http

option httplog

maxconn 10

stats refresh 30s

stats uri /stats

stats auth admin:admin

stats hide-version

frontend weblb

bind *:80

acl is_lianzhou hdr_beg(host) zabbix.ilanni.com

acl is_zabbix url_beg /zabbix

use_backend zabbix if is_zabbix

backend zabbix

balance source

server web1 192.168.1.22:8099 maxconn 1024 weight 1 check inter 2000 rise 2 fall 3

haproxy配置很簡單,只須要定義一個is_zabbix的url匹配規則,而後分發到後端的服務器組便可。

仍是須要注意的,匹配的目錄在後端服務器是存在的。

配置完畢後,訪問以下:

http://zabbix.ilanni.com/zabbix/

clip_p_w_picpath006

經過上圖,咱們能夠很明顯的看出haproxy與zabbix已經完美集成。

相關文章
相關標籤/搜索