zoukankan      html  css  js  c++  java
  • day3修改配置文件

        有如下配置文件,在指定文件位置添加一条新的记录:

    global       
            log 127.0.0.1 local2
            daemon
            maxconn 256
            log 127.0.0.1 local2 info
    defaults
            log global
            mode http
            timeout connect 5000ms
            timeout client 50000ms
            timeout server 50000ms
            option  dontlognull
    
    listen stats :8888
            stats enable
            stats uri       /admin
            stats auth      admin:1234
    
    frontend oldboy.org
            bind 0.0.0.0:80
            option httplog
            option httpclose
            option  forwardfor
            log global
            acl www hdr_reg(host) -i www.oldboy.org
            use_backend www.oldboy.org if www
    
    backend test.oldboy.org
            server 100.1.7.9 100.1.7.9 weight 20 maxconn 3000
    
    backend buy.oldboy.org
            server 100.1.7.90 100.1.7.90 weight 20 maxconn 3000
    
    原配置文件如下
    添加用户输入内容如下:
    {"backend": "test.oldboy.org","record":{"server": "100.1.7.999","weight": 20,"maxconn": 30}}

    global       
            log 127.0.0.1 local2
            daemon
            maxconn 256
            log 127.0.0.1 local2 info
    defaults
            log global
            mode http
            timeout connect 5000ms
            timeout client 50000ms
            timeout server 50000ms
            option  dontlognull

    listen stats :8888
            stats enable
            stats uri       /admin
            stats auth      admin:1234

    frontend oldboy.org
            bind 0.0.0.0:80
            option httplog
            option httpclose
            option  forwardfor
            log global
            acl www hdr_reg(host) -i www.oldboy.org
            use_backend www.oldboy.org if www

    backend www.oldboy.org
            server 100.1.7.9 100.1.7.9 weight 20 maxconn 3000

    backend buy.oldboy.org
            server 100.1.7.90 100.1.7.90 weight 20 maxconn 3000

    原配置文件如下

  • 相关阅读:
    django分组group、user、permission
    django权限验证装饰器
    django用户和权限管理
    Selenium+python --如何定位表格中的某一个内容
    Selenium+python --定位下拉列表框并选取内容
    Selenium2+python--iframe
    Selenium3+python3--如何定位鼠标悬停才显示的元素
    Selenium3+python3--定位到元素后如何操作元素
    Selenium+python --如何定位一组元素
    补充前几天测试用到的Linux命令
  • 原文地址:https://www.cnblogs.com/gengcx/p/6822331.html
Copyright © 2011-2022 走看看