1、如何在线上环境优雅的修改配置文件?

配置文件名称ini

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
原配置文件

相关文章:

  • 2022-12-23
  • 2021-07-11
  • 2022-12-23
  • 2021-12-31
  • 2021-11-11
  • 2021-09-19
  • 2022-12-23
猜你喜欢
  • 2021-09-26
  • 2022-12-23
  • 2021-10-04
  • 2021-08-09
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案