twisted proxy随机重定向

时间:2016-05-02 04:57:35

标签: python python-3.x proxy twisted reverse-proxy

我有一个非常简单的反向代理脚本:

from twisted.internet import reactor
from twisted.web import proxy, server
from twisted.python import log
from twisted.names import client

site = server.Site(proxy.ReverseProxyResource('www.example.com', 80, ''.encode("utf-8")))
reactor.listenTCP(80, site)
reactor.run()

但有时当我连接到我的服务器时,它会重定向到随机网站,例如test0.com,有时网站声称我有病毒。我想知道Twisted中是否有错误?或者如果有人以前经历过这个?

0 个答案:

没有答案