1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-12 10:45:38 +02:00

Prefix static path with version for Traefik

This commit is contained in:
Tim Möhlmann 2018-12-30 20:52:34 +02:00
parent 1b64c80612
commit 598ad4fc7a
No known key found for this signature in database
GPG Key ID: 8677988D8072E8DE

View File

@ -10,7 +10,9 @@ import random
import ipaddress
app = flask.Flask(__name__)
version = os.getenv("this_version")
static_url_path = "/" + version + "/static"
app = flask.Flask(__name__,static_url_path=static_url_path)
flask_bootstrap.Bootstrap(app)
db = redis.StrictRedis(host='redis', port=6379, db=0)
@ -40,8 +42,6 @@ def build_app(path):
def app_context():
return dict(versions=os.getenv("VERSIONS","master").split(','))
version = os.getenv("this_version")
prefix_bp = flask.Blueprint(version, __name__)
prefix_bp.jinja_loader = jinja2.ChoiceLoader([
jinja2.FileSystemLoader(os.path.join(path, "templates")),