zoukankan      html  css  js  c++  java
  • haproxy simple cfg

    global
        log /dev/log    local0
        log /dev/log    local1 notice
        chroot /var/lib/haproxy
        user haproxy
        group haproxy
        daemon
    
    defaults
        log    global
        mode    http
        option    httplog
        option    dontlognull
            contimeout 5000
            clitimeout 50000
            srvtimeout 50000
        errorfile 400 /etc/haproxy/errors/400.http
        errorfile 403 /etc/haproxy/errors/403.http
        errorfile 408 /etc/haproxy/errors/408.http
        errorfile 500 /etc/haproxy/errors/500.http
        errorfile 502 /etc/haproxy/errors/502.http
        errorfile 503 /etc/haproxy/errors/503.http
        errorfile 504 /etc/haproxy/errors/504.http
    
    frontend tutorial_in
        bind *:8088
        default_backend tutorial_http
    
    backend tutorial_http
        balance roundrobin
        mode http
        server web1 172.16.13.135:80 check
        server web2 172.16.13.136:80 check
        server web3 172.16.13.137:80 check
    
    listen stats *:8089
        stats enable
        stats uri /
        stats hide-version
        stats auth someuser:password

    browser web page:  localhost:8088

    health monitor : localhost:8089

  • 相关阅读:
    面试生信工程师2
    R语言矩阵相关性计算及其可视化?
    PCA方差解释比例求解与绘图?
    MySQL 练习
    oracle高级数据查询技术
    Oracle安全管理
    基本查询语句
    管理表
    oracle PL/SQL高级编程
    oracle视图与索引
  • 原文地址:https://www.cnblogs.com/pinganzi/p/5961263.html
Copyright © 2011-2022 走看看