Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arloor/connect
配合HttpProxy使用,在本机启动http和socks5代理
https://github.com/arloor/connect
Last synced: about 1 month ago
JSON representation
配合HttpProxy使用,在本机启动http和socks5代理
- Host: GitHub
- URL: https://github.com/arloor/connect
- Owner: arloor
- License: mit
- Created: 2020-03-27T15:17:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-11-05T09:45:17.000Z (about 1 year ago)
- Last Synced: 2024-10-03T10:46:44.405Z (about 2 months ago)
- Language: Java
- Homepage:
- Size: 94.7 KB
- Stars: 13
- Watchers: 3
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## 客户端代理
配合[HttpProxy](https://github.com/arloor/HttpProxy)使用
在本机3128启动http代理
## 配置文件
```json
{
"httpProxy": {
"port": 1080,
"user": "user",
"passwd": "passwd",
"checkAuth": false,
"onlyLocalhost": false,
"finalServer": {
"host": "xxxxx",
"port": 443,
"userName": "xxx",
"password": "xxx"
},
"routers": [{
"addrSuffixes": ["nflxso.net", "nflxvideo.net", "netflix.com", "nflxext.com"],
"server": {
"host": "xxx",
"port": 443,
"userName": "xxx",
"password": "xxx"
}
}]
},
"httpProxy": {
"port": 3128,
"user": "xx",
"passwd": "xx",
"checkAuth": false,
"onlyLocalhost": false,
"server": {
"host": "xx",
"port": 443,
"userName": "xx",
"password": "xx"
}
},
"controlServer": {
"port": 7229,
"onlyLocalhost": true
}
}
```