我正在尝试使用在python 3上运行的cherrypy 3.2.0中运行虚拟主机:
#!/usr/bin/env python
import cherrypy
from cherrypy import expose
class Root(object):
@expose
def index(self):
return "I am the root vhost"
class Foo(object):
@expose
def index(self):
return "I am testingdomain.com"
class Bar(object):
@expose
def index(self):
return "I am testingdomain2.com."
def main():
cherrypy.config.update({'server.socket_host': 'rootdomain.com',
'server.socket_port': 80,
})
conf = {
"/": {
"request.dispatch": cherrypy.dispatch.VirtualHost(
**{
"testingdomain.com:8000": "/foo",
"testingdomain2.com:8000": "/bar"
})
}
}
root = Root()
root.foo = Foo()
root.bar = Bar()
cherrypy.tree.mount(root, "", conf)
#cherrypy.quickstart()
cherrypy.engine.start()
cherrypy.engine.block()
if __name__ == "__main__":
main()
我已经在/ etc / hosts中获得了测试域名。请求时,它们被正确定向到服务器。 但是,即使我去了testingdomain.com或testingdomain2.com,我获得服务的唯一页面就是Root。
有人可以帮帮我吗?
答案 0 :(得分:2)
它们在cherrypy docs中显示的端口是'80'以外的值。至少curl
,如果端口为80,则不会向Host
请求标头添加端口号;我怀疑cherrypy.dispatch.VirtualHost
不够聪明,无法将端口80上example.com
的主机头与example.com:80
匹配,反之亦然。我可能会在配置中映射两个主机(有和没有端口号),以防异常的主机头发生故障。