Re: Comment on SpecialProxyAutoConfig in hyk-proxy

8 views
Skip to first unread message

hyk-...@googlecode.com

unread,
Jul 13, 2010, 11:48:46 AM7/13/10
to hyk-...@googlegroups.com
Comment by flyeblue:

能不能在服务器端运行tor啊?就是:客户端<->服务器端<->tor这样的模式?


For more information:
http://code.google.com/p/hyk-proxy/wiki/SpecialProxyAutoConfig

hyk-...@googlecode.com

unread,
Jul 13, 2010, 10:11:25 PM7/13/10
to hyk-...@googlegroups.com
Comment by yinqiwen:

理论/技术上均不可行

Fei Zhang

unread,
Jul 13, 2010, 11:43:03 PM7/13/10
to hyk-...@googlegroups.com
客户端有没有单应用程序版本的啊?不方便使用啊?要安装java,很麻烦。




--
我将于人海茫茫中访我唯一灵魂之伴侣,得之,我幸;不得,我命。如此而已。

 I love you not because of who you are,but because of who I am when I am with you.

yinqiwen

unread,
Jul 15, 2010, 11:00:41 AM7/15/10
to hyk-proxy-discuss
使用是否方便和安装java无关吧?
安装只是一次性的,并不影响使用过程

On 7月14日, 上午11时43分, Fei Zhang <flyeb...@gmail.com> wrote:
> 客户端有没有单应用程序版本的啊?不方便使用啊?要安装java,很麻烦。
>

> 2010/7/14 <hyk-pr...@googlecode.com>

hyk-...@googlecode.com

unread,
Aug 26, 2010, 11:20:31 PM8/26/10
to hyk-...@googlegroups.com
Comment by zsumore:

应该可以,自己在国外放个服务器

hyk-...@googlecode.com

unread,
Aug 30, 2010, 8:48:15 PM8/30/10
to hyk-...@googlegroups.com
Comment by zsumore:

如果能集成AutoProxy的gfwList就perfect了

hyk-...@googlecode.com

unread,
Sep 13, 2010, 9:06:51 PM9/13/10
to hyk-...@googlegroups.com
Comment by congxz6688:

回楼上:在“AutoProxy”中新建一个名为GAE的代理,HTTP模式,主机127.0.0.1,端口
48100。这样,就在使用上跟TOR、SSH没什么区别了。

hyk-...@googlecode.com

unread,
Sep 16, 2010, 4:44:41 AM9/16/10
to hyk-...@googlegroups.com
Comment by zimogfw:

和GAE混用的secondary proxy好像不能运行于socks模式,否则起到代理的作用。
作者有计划改善这个问题吗?

yinqiwen

unread,
Sep 16, 2010, 4:46:34 AM9/16/10
to hyk-...@googlegroups.com
see http://code.google.com/p/hyk-proxy/issues/detail?id=50
It‘s on schedule.
--
yinqiwen(隐其闻)

hyk-...@googlecode.com

unread,
Sep 16, 2010, 4:48:49 AM9/16/10
to hyk-...@googlegroups.com
Comment by zimogfw:

对不起,打错了:起到 -》起不到

hyk-...@googlecode.com

unread,
Sep 16, 2010, 4:52:17 AM9/16/10
to hyk-...@googlegroups.com

hyk-...@googlecode.com

unread,
Sep 16, 2010, 8:57:56 AM9/16/10
to hyk-...@googlegroups.com
Comment by zimogfw:

谢谢。
另外,最好还是不要强制让GUI窗口alwaysOnTheTop,至少需要提供一个选项来
switch。

18°

unread,
Sep 16, 2010, 12:49:42 PM9/16/10
to hyk-...@googlegroups.com
如果想共用GAE和phptunnel SPAC应怎设

http://lls1982.voovq.com/tunnel.php 是我上传的,不过好像不能用

phptunnel.conf
#The Tunnel Server Port LocalTunnelPort=4810
#List your PHP page urls below http://lls1982.voovq.com/tunnel.php 这样对吗

yinqiwen

unread,
Sep 16, 2010, 9:47:04 PM9/16/10
to hyk-...@googlegroups.com
如何设置SPAC看这里 http://code.google.com/p/hyk-proxy/wiki/SpecialProxyAutoConfig

phptunnel.conf配置注意两点即可,
1. “#”是注释符号,所有以'#“开头的行程序都会忽略的
2. 部署的php的url是可以在浏览器中输入的url(带http://前缀
--
yinqiwen(隐其闻)

18°

unread,
Sep 17, 2010, 1:42:49 AM9/17/10
to hyk-...@googlegroups.com
我就是不知道这样设对不对

yinqiwen

unread,
Sep 17, 2010, 7:23:40 AM9/17/10
to hyk-...@googlegroups.com
没有问题
--
yinqiwen(隐其闻)

18°

unread,
Sep 17, 2010, 1:13:49 PM9/17/10
to hyk-...@googlegroups.com
但是但只用phptunnel时,只能打开Youtube ,而不能看,不知道哪里出问题了

hyk-...@googlecode.com

unread,
Sep 26, 2010, 3:16:21 AM9/26/10
to hyk-...@googlegroups.com
Comment by dong128:

如何写一个类似AutoProxy的表达式根据URL选择Proxy?

yinqiwen

unread,
Sep 26, 2010, 3:20:06 AM9/26/10
to hyk-...@googlegroups.com
~=是通配比较,若url中含后面字符串则比较为真(暂不支持正则表达式)

if $url ~= "twitter" || $url ~= "youtube"
{
   return $PUFF;
--
yinqiwen(隐其闻)

hyk-...@googlecode.com

unread,
Sep 26, 2010, 3:23:22 AM9/26/10
to hyk-...@googlegroups.com
Comment by yinqiwen:

~=是通配比较,若url中含后面字符串则比较为真(暂不支持正则表达式)

if $url ~= "twitter" || $url ~= "youtube"
{
return $PUFF;

}


hyk-...@googlecode.com

unread,
Dec 10, 2010, 7:23:40 AM12/10/10
to hyk-...@googlegroups.com
Comment by chenxiccc:

GAE和PHP混合使用,这里应该怎么写呢?没看到如何切换到PHP代理。

hyk-...@googlecode.com

unread,
Dec 11, 2010, 4:07:29 AM12/11/10
to hyk-...@googlegroups.com
Comment by yinqiwen:

把默认的$Seattle替换为$PHP

hyk-...@googlecode.com

unread,
Sep 4, 2014, 1:05:10 PM9/4/14
to hyk-...@googlegroups.com
0 new messages