commit
cdca5646ef
1 changed files with 7 additions and 1 deletions
|
@ -10,7 +10,7 @@ from logging.handlers import TimedRotatingFileHandler
|
||||||
|
|
||||||
from admin import init_admin
|
from admin import init_admin
|
||||||
from config import Configuration
|
from config import Configuration
|
||||||
from flask import Flask, render_template
|
from flask import Flask, render_template, Response
|
||||||
from flask_bootstrap import Bootstrap, StaticCDN
|
from flask_bootstrap import Bootstrap, StaticCDN
|
||||||
from flask_debugtoolbar import DebugToolbarExtension
|
from flask_debugtoolbar import DebugToolbarExtension
|
||||||
from flask_login import LoginManager
|
from flask_login import LoginManager
|
||||||
|
@ -161,6 +161,12 @@ def create_app():
|
||||||
"""Initializer for the Flask app object"""
|
"""Initializer for the Flask app object"""
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
|
|
||||||
|
@app.route('/robots.txt')
|
||||||
|
def noindex():
|
||||||
|
r = Response(response="User-Agent: *\nDisallow: /\n", status=200, mimetype="text/plain")
|
||||||
|
r.headers["Content-Type"] = "text/plain; charset=utf-8"
|
||||||
|
return r
|
||||||
|
|
||||||
# Load the config file
|
# Load the config file
|
||||||
app.config.from_object("config.Configuration")
|
app.config.from_object("config.Configuration")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue