By bjoernoest
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!
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.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.