commit 237765c46468fb435d4307723f28f295e748dce6
parent 5ddb8585240828849fb30a397fe94c59c29b9088
Author: Özgür Kesim <oec@codeblau.de>
Date: Sun, 20 Apr 2025 13:43:12 +0200
[provision] REALLY set the static_url_path to /static
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/talermerchantdemos/provision/provision.py b/talermerchantdemos/provision/provision.py
@@ -57,7 +57,7 @@ BASE_DIR = os.path.dirname(os.path.abspath(__file__))
app = flask.Flask(__name__,
template_folder="../templates",
static_folder="../static",
- static_url_path="")
+ static_url_path="/static")
app.wsgi_app = ProxyFix(app.wsgi_app, x_host=1, x_prefix=1)
app.debug = True
app.secret_key = base64.b64encode(os.urandom(64)).decode("utf-8")