mirror of
https://github.com/snail007/goproxy.git
synced 2026-04-27 08:25:54 +03:00
[GH-ISSUE #118] 请问如何实现多代理 #62
Labels
No labels
TODO
bug
duplicate
enhancement
good first issue
help wanted
helpful
invalid
need-confirm
pull-request
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/goproxy#62
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @kenpingliu on GitHub (Jul 28, 2018).
Original GitHub issue: https://github.com/snail007/goproxy/issues/118
想要实现多个代理同时工作,并且二级地址也是分开的,例如
HTTP 0.0.0.0:8081 的下一级是 22.22.22.21:38080
HTTP 0.0.0.0:8082 的下一级是 22.22.22.22:38080
HTTP 0.0.0.0:8083 的下一级是 22.22.22.23:38080
HTTP 0.0.0.0:8084 的下一级是 22.22.22.24:38080
这样相当于同时在本机有4个代理服务器在工作,但是每个代理服务器的二级都是不相同的。
@snail007 commented on GitHub (Jul 28, 2018):
启动多个即可,只要端口不冲突就行了。
@kenpingliu commented on GitHub (Jul 28, 2018):
@snail007 谢谢!