From e60bfd37c796480edcf35b3573bea22c1ac9bf90 Mon Sep 17 00:00:00 2001 From: Jeremy Cline Date: Thu, 15 Jun 2017 12:35:56 +0000 Subject: [PATCH] Fix the static path for fmn.web in non-staging Signed-off-by: Jeremy Cline --- roles/notifs/frontend/templates/fmn.web.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/notifs/frontend/templates/fmn.web.conf b/roles/notifs/frontend/templates/fmn.web.conf index 13b72ba06b..1362f654c5 100644 --- a/roles/notifs/frontend/templates/fmn.web.conf +++ b/roles/notifs/frontend/templates/fmn.web.conf @@ -1,7 +1,7 @@ {% if env == 'staging' %} Alias /notifications/static /usr/share/fmn/static {% else %} -Alias /notifications/static /usr/share/fmn/static +Alias /notifications/static /usr/share/fmn.web/static {% endif %} WSGIDaemonProcess fmn user=apache group=apache maximum-requests=1000 display-name=fmn processes={{ wsgi_procs }} threads={{ wsgi_threads }}