https://github.com/Athlon1600/php-proxy
https://github.com/zxq2233/php-proxy
(A web proxy script written in PHP and built as an alternative to Glype. https://www.php-proxy.com)
https://github.com/zeulb/Webproxy
https://github.com/greatfire/website-mirror-by-proxy
https://github.com/hsleisink/proxy
https://github.com/restran/web-proxy
https://github.com/moveax3/webproxy
https://github.com/dalgarins/webProxy
https://github.com/AdamGreenhill/Mirror
https://github.com/luugiathuy/WebProxyPython
https://github.com/joshdick/miniProxy , A simple PHP web proxy. http://joshdick.github.io/miniProxy
https://github.com/PHProxy/phproxy, PHP based web proxy. Initially developed by whitefyre http://phproxy.github.io/
https://github.com/selecterskyphp/glype_chs, 使用PHP实现的在线Web代理程序,基于glype 1.4.11,并汉化和修复部分Bug.
https://github.com/Abban/glype
相关帖子:
https://briteming.blogspot.com/2016/01/phpweb-proxy.html
https://briteming.blogspot.com/2017/05/nodejsnode-unblocker.html
------
https://github.com/Gerhut/http-mirror ,PHP实现的HTTP纯镜像服务器。
---------
https://github.com/zxq2233/php-proxy
(A web proxy script written in PHP and built as an alternative to Glype. https://www.php-proxy.com)
https://github.com/zeulb/Webproxy
https://github.com/greatfire/website-mirror-by-proxy
https://github.com/hsleisink/proxy
https://github.com/restran/web-proxy
https://github.com/moveax3/webproxy
https://github.com/dalgarins/webProxy
https://github.com/AdamGreenhill/Mirror
https://github.com/luugiathuy/WebProxyPython
https://github.com/joshdick/miniProxy , A simple PHP web proxy. http://joshdick.github.io/miniProxy
https://github.com/PHProxy/phproxy, PHP based web proxy. Initially developed by whitefyre http://phproxy.github.io/
https://github.com/selecterskyphp/glype_chs, 使用PHP实现的在线Web代理程序,基于glype 1.4.11,并汉化和修复部分Bug.
https://github.com/Abban/glype
相关帖子:
https://briteming.blogspot.com/2016/01/phpweb-proxy.html
https://briteming.blogspot.com/2017/05/nodejsnode-unblocker.html
------
https://github.com/Gerhut/http-mirror ,PHP实现的HTTP纯镜像服务器。
---------
基于 Tornado 实现的 Web 站点的反向代理
因为一个奇怪的需求,使用 Python 和 Tornado 框架实现了一个 Web 站点的反向代理。实现的功能是这样:- 假设这个反向代理网站的地址是 http://www.example.com
- 访问 http://www.example.com/.site.backend_site0/,访问的是 backend_site0,这个网站可以是部署在内网的某个站点(外网当然也是可以)。
- 访问 http://www.example.com/.site.backend_site1/,访问另外一个站点 backend_site1
- 在url中添加前缀
.site.
,第一次访问的时候使用 http://www.example.com/.site.backend_site/ - 服务端识别出请求的后端站点
backend_site
后,会设置 Cookie,.site = backend_site
,后续的访问会根据Cookie来识别出来。 - 当访问另外一个网站 http://www.example.com/.site.backend_site1/,这时候,服务端会清除旧的 Cookie,并设置新的 Cookie,
.site = backend_site1
,这样就切换到新的站点backend_site1
- 启用页面内容替换,保证页面内的内网IP地址转换成反向代理的地址。例如后端站点 backend_site0 的地址是 http://10.1.2.3/,页面内有链接 http://10.1.2.3/img/a.png,将其替换成 /.site.backend_site0/img/a.png
环境需求
Python 2.7 Tornado 4.0所代理的后端网站注意事项
-
url 的前缀不应出现 /.site.
由于反向代理采用url前缀来区分后端网站,如 /.site.example/,表示后端站点example。
例如以下为禁用的url:
/.site./
/.site.example/
/.site.example/user/login/
-
cookies 中不应出现以 .site 命名的 cookie 值,这个 cookie 是用来标识当前访问的后端站点
CentOS 7.0 部署
Tornado 的部署可以参照这里的教程。通过启动多个 Tornado 实例,来避免调用到同步函数块,导致阻塞住,无法响应其他用户的请求。使用 supervisor 来启动 Tornado Server,并使用 Nginx 作为 Web 服务器,反向代理后端的这些 Tornado 实例。修改配置文件 settings.py
# 转发到后端需要代理的网站的地址列表
forward_list = {
"baidu": BackendSite('baidu', 'http://www.baidu.com', 'www.baidu.com', []),
"douban": BackendSite('douban', 'http://www.douban.com', 'www.douban.com', [
# 使用正则表达式替换页面内容,参数分别是
# 需要替换的URI的正则表达式,源字符串的正则表达式,替换后的字符串
SubsFilterRules('.', r'http://www\.douban\.com', '/.site.douban'),
SubsFilterRules('.', r'http://img3\.douban\.com', '/.site.img3.douban'),
SubsFilterRules('.', r'http://img5\.douban\.com', '/.site.img5.douban'),
]),
"img3.douban": BackendSite('douban', 'http://img3.douban.com', 'img3.douban.com', []),
"img5.douban": BackendSite('douban', 'http://img5.douban.com', 'img5.douban.com', []),
}
使用 supervisor 启动 Tornado Server
设置配置文件vim /etc/supervisord.conf
输入如下信息[program:tornado_server_9001]
command=python /home/python/web_proxy/proxy.py --port=9001
directory=/home/python/web_proxy
autorestart=true
redirect_stderr=true
stdout_logfile = /var/log/supervisord/web_proxy.log
[program:tornado_server_9002]
command=python /home/python/web_proxy/proxy.py --port=9002
directory=/home/python/web_proxy
autorestart=true
redirect_stderr=true
stdout_logfile = /var/log/supervisord/web_proxy.log
[program:tornado_server_9003]
command=python /home/python/web_proxy/proxy.py --port=9003
directory=/home/python/web_proxy
autorestart=true
redirect_stderr=true
stdout_logfile = /var/log/supervisord/web_proxy.log
重新加载配置文件supervisorctl reload
重新启动所有程序sudo supervisorctl restart all
配置 nginx
添加 nginx 配置文件vim /etc/nginx/conf.d/web_proxy.conf
输入如下配置信息upstream tornadoes {
server 127.0.0.1:9001;
server 127.0.0.1:9002;
server 127.0.0.1:9003;
}
server {
listen 9000;
server_name your_server_name; # 例如输入服务器IP
gzip on;
# 设置允许压缩的页面最小字节数,页面字节数从header头得content-length中进行获取。默认值是0,不管页面多大都压缩。建议设置成大于1k的字节数,小于1k可能会越压越大。
gzip_min_length 1000;
gzip_buffers 4 16k;
gzip_http_version 1.1;
# 1~9,默认为1,数值越大,压缩率越高,CPU占用越多,时间越久
gzip_comp_level 3;
gzip_vary on;
# 禁用对 IE 6 使用 gzip 压缩
gzip_disable "MSIE [1-6]\.";
gzip_types text/plain text/html text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript application/json;
## Individual nginx logs
access_log /var/log/nginx/web_proxy_access.log;
error_log /var/log/nginx/web_proxy_error.log;
location / {
proxy_pass_header Server;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Scheme $scheme;
proxy_pass http://tornadoes;
}
}
重启 nginxservice nginx restart
from
https://github.com/restran/web-proxy
----------------------
No comments:
Post a Comment