Dynamic Subdomain Handling in a Web App (Flask)

20,780

Solution 1

All Flask's routing constructs support the subdomain keyword argument (this includes support for route variables).

@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"

Solution 2

To complement Sean Viera's post, you also need to set the SERVER_NAME config variable.

Documentation: http://flask.pocoo.org/docs/config/#SERVER_NAME

The name and port number of the server. Required for subdomain support (e.g.: 'myapp.dev:5000') Note that localhost does not support subdomains so setting this to “localhost” does not help. Setting a SERVER_NAME also by default enables URL generation without a request context but with an application context.

To test locally you need to add entries to your hosts file, like this:

127.0.0.1       cvshark.local
127.0.0.1       robert.cvshark.local
127.0.0.1       www.cvshark.local
Share:
20,780
Bruce Collie
Author by

Bruce Collie

Updated on April 12, 2020

Comments

  • Bruce Collie
    Bruce Collie about 4 years

    I'm going to be using flask to create a web application, and part of the application will involve a subdomain (for example, user1.appname.org).

    I'm not sure how to go about creating these subdomains dynamically in the flask configuration, or how to deploy them to a production server.

    What is the best way of doing this?