You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Configure HAProxy to route requests to swarm nodes on port 8000
backend http_back
log global
balance roundrobin
http-request replace-value Host .* info.cern.ch
server node4 192.168.99.105:8080 check
server node1 192.168.99.105:8000 check
server node2 192.168.99.106:8000 check
server node3 192.168.99.107:8000 check
我在
haproxy
的路由规则中加入了node4的路由规则,visualizer的url是http://ip:port
这样的形式, 这样和django的url可能存在矛盾,这样,路由的时候,加载的页面将按照路由的顺序交替变化,有啥方法可以解决这样的问题?The text was updated successfully, but these errors were encountered: