Serve basic robots.txt to avoid indexing

Closes #1015
pull/1029/head
Ben Busby 11 months ago
parent 8a2a6f3265
commit 4962659acb
No known key found for this signature in database
GPG Key ID: B9B7231E01D924A1

@ -557,6 +557,15 @@ def window():
)
@app.route(f'/robots.txt')
def robots():
response = make_response(
'''User-Agent: *
Disallow: /''', 200)
response.mimetype = 'text/plain'
return response
@app.errorhandler(404)
def page_not_found(e):
return render_template('error.html', error_message=str(e)), 404

Loading…
Cancel
Save