# goproxy **Repository Path**: wisdom/goproxy ## Basic Information - **Project Name**: goproxy - **Description**: No description available - **Primary Language**: Go - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-01-25 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # goproxy http 代理 ## 参数说明 > --listen 监听(需要代理)的端口 > --remote_host 远程主机地址 > --proxy_host 代理服务器地址 ## 运行示例 ``` goproxy.exe --listen=18760 --remote_host="http://127.0.0.1:8760" --proxy_host=http://127.0.0.1:666 ``` ## 开发测试 ``` go run ./main.go --listen=18760 --remote_host="http://127.0.0.1:8760" --proxy_host=http://127.0.0.1:666 ``` ## 打包执行文件 ``` go build ./main.go -o bin/goproxy.exe ```