Report this

What is the reason for this report?

Problem with setup of subdomains in flask

Posted on February 3, 2016

Hi I am trying to setup flask blueprints with subdomains. However it doesnt work. i have setup my domain to point to the digitalocean dns servers. I made a created an A record, with @ so i assume that it should cover everything behind the .mydomain.org?

my sample testfile is init.py

from flask import Flask, Blueprint
app = Flask(__name__)
app.config['SERVER_NAME'] = 'mydomain.org'


test = Blueprint('test', __name__)
@test.route("/test")
def testindex():
    return "This is test index page."

app.register_blueprint(test, subdomain='sub')

as described here https://exploreflask.com/blueprints.html

however the result is always ERR_NAME_NOT_RESOLVED.

Anybody have an idea of what im doing wrong? Thanks Best Bjoern



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

ERR_NAME_NOT_RESOLVED means the domain name you typed in your address bar couldn’t be resolved to an IP address. Without knowing the domain name, there’s very little that can be done to help.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.