我在我的项目中使用cherrypy和nginx。我的控制器部分如下所示:
@cherrypy.expose
@named(name="get_playlist", path="/get_playlist"):
def get_playlist(self):
我的nginx部分看起来像这样: 服务器{
listen 80;
server_name local-www.example.com;
location / {
proxy_pass http://example;
proxy_redirect default;
}
}
有没有办法从我的控制器中获取local-www.example.com?
答案 0 :(得分:0)
如何从标头中获取主机?
{{1}}