Web应用程序中的动态子域处理(Flask)

时间:2012-06-13 19:08:26

标签: python web subdomain flask wildcard-subdomain

我将使用flask创建一个Web应用程序,部分应用程序将涉及一个子域(例如,user1.appname.org)。

我不确定如何在烧瓶配置中动态创建这些子域,或者如何将它们部署到生产服务器。

这样做的最佳方式是什么?

2 个答案:

答案 0 :(得分:43)

要补充Sean Viera的帖子,您还需要设置SERVER_NAME配置变量。

文档:http://flask.pocoo.org/docs/config/#SERVER_NAME

  

服务器的名称和端口号。子域支持需要   (例如:'myapp.dev:5000')请注意,localhost不支持   subdomains所以将其设置为“localhost”没有帮助。设置一个   默认情况下,SERVER_NAME也可以在没有请求的情况下生成URL   上下文,但有应用程序上下文。

要在本地测试,您需要在hosts文件中添加条目,如下所示:

127.0.0.1       cvshark.local
127.0.0.1       robert.cvshark.local
127.0.0.1       www.cvshark.local

答案 1 :(得分:40)

所有Flask的路由构造都支持subdomain关键字参数(这包括对路由变量的支持)。

@app.route("/", subdomain="static")
def static_index():
    """Flask supports static subdomains
    This is available at static.your-domain.tld"""
    return "static.your-domain.tld"

@app.route("/dynamic", subdomain="<username>")
def username_index(username):
    """Dynamic subdomains are also supported
    Try going to user1.your-domain.tld/dynamic"""
    return username + ".your-domain.tld"