Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yryz/httpproxy
一个轻量级HTTP代理,支持shadowsocks服务,方便命令行、开发环境使用。
https://github.com/yryz/httpproxy
curl golang http-proxy httpproxy shadowsocks shell
Last synced: 28 days ago
JSON representation
一个轻量级HTTP代理,支持shadowsocks服务,方便命令行、开发环境使用。
- Host: GitHub
- URL: https://github.com/yryz/httpproxy
- Owner: yryz
- License: apache-2.0
- Created: 2017-02-23T13:50:43.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-07-28T03:25:23.000Z (over 5 years ago)
- Last Synced: 2024-08-03T17:12:20.728Z (4 months ago)
- Topics: curl, golang, http-proxy, httpproxy, shadowsocks, shell
- Language: Go
- Homepage:
- Size: 11.7 KB
- Stars: 95
- Watchers: 6
- Forks: 31
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-network-stuff - **63**星
README
[![Build Status](https://travis-ci.org/yryz/httpproxy.svg?branch=master)](https://travis-ci.org/yryz/httpproxy)
使用Golang实现的HTTP代理转shadowsocks,主要为命令行下`go get`、`docker pull`、`npm install`、`pip install`、`gem install`、`curl`等程序提供HTTP代理服务,解决安装总是失败的问题。这些服务不支持shadowsocks,但对http代理都有支持。
## 原理
应用 <-------HTTP/1.1-------> httpproxy <-------加密-------> 你的shadowsocks服务器## 使用
**安装**`go get github.com/yryz/httpproxy`
或者
`curl -L https://github.com/yryz/httpproxy/releases/download/v1.1/httpproxy-linux64.tar.gz | tar -xz -C /usr/local/bin`
配置文件 ~/.httpproxy/config.json(这里是默认配置,也可以通过 httpproxy -c config.json 来指定)
```
{
"listen": "127.0.0.1:6666",
"ss_server": "ip:port",
"ss_cipher": "aes-128-cfb",
"ss_password": "your password"
}
```
启动 `httpproxy`**使用代理**
如果想命令行一直走代理,下面配置加入到 ~/.bash_profile
```
http_proxy=http://127.0.0.1:6666
https_proxy=http://127.0.0.1:6666
```如果只是想临时使用,可以手动设置http_proxy环境变量或者 使用`httpproxy set` 快速就地设置(不影响全局,推荐!)。
推荐方式二:修改~/.bash_profile设置别名`alias proxy="http_proxy=http://127.0.0.1:6666"`,使用时可以 proxy curl ip.cn## 特点
* 支持与shadowsocks服务桥接
* 支持CONNECT,支持HTTPS、HTTP2代理
* 简单易用、命令行友好## TODO
* 抓包分析、支持HTTPS
* 支持代理开关,不用每次手动设置代理地址
* 支持自定义白名单
* 增加私有IP、主机的过滤
* 增加授权机制:用户名验证或IP白名单