Dongsheng
Results
1
issues of
Dongsheng
``` http { upstream myproject { server 172.17.0.5:80 weight=3; server 172.17.0.6:80 weight=1; } server { listen 80; location / { proxy_pass http://myproject; } } } ```