https://github.com/chpengzh/proxy-server
将sslocal提供的无安全策略socks5代理转化为满足标准安全协议的socks5代理与http/https代理
https://github.com/chpengzh/proxy-server
Last synced: 3 months ago
JSON representation
将sslocal提供的无安全策略socks5代理转化为满足标准安全协议的socks5代理与http/https代理
- Host: GitHub
- URL: https://github.com/chpengzh/proxy-server
- Owner: chpengzh
- Created: 2022-02-01T13:43:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-02T06:01:34.000Z (over 3 years ago)
- Last Synced: 2024-12-27T06:41:47.989Z (5 months ago)
- Language: Java
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# socks5代理网关
总所周知sslocal提供的socks5本地代理服务是没有安全策略的,本项目是自用安全代理服务网关;
```
mvn clean install
```启动代理服务
```
nohup java -jar target/socks5-netty-1.0.0-SNAPSHOT.jar \
--app.auth.some-user=some.password \
--app.enable-auth=true \
--proxy-host=127.0.0.1 \
--proxy-port=1080 \
--http-port=8991 \
> proxy.log 1>&2 &
```可以使用