From c5f991771395708c1be0a4cd8ae7da72a4ca0aed Mon Sep 17 00:00:00 2001 From: Pierre Hanselmann Date: Wed, 20 Sep 2017 11:19:07 +0200 Subject: [PATCH] WSGI configuration missing directive WSGI configuration is missing the directive "WSGIApplicationGroup %{GLOBAL}" after WSGIProcessGroup" in the horizon template. Of all WSGI configuration templates it is the only one that does not have the "WSGIApplicationGroup" line. Change-Id: I3001901abbaae842f49179b6febf844337431afc Closes-Bug: #1717922 (cherry picked from commit 8298afef017ef4e4cc84b12d0fa530010319bd7e) --- ansible/roles/horizon/templates/horizon.conf.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible/roles/horizon/templates/horizon.conf.j2 b/ansible/roles/horizon/templates/horizon.conf.j2 index 2e7f2a8910..d51b8db742 100644 --- a/ansible/roles/horizon/templates/horizon.conf.j2 +++ b/ansible/roles/horizon/templates/horizon.conf.j2 @@ -14,6 +14,7 @@ TraceEnable off WSGIProcessGroup horizon-http WSGIScriptAlias / {{ python_path }}/openstack_dashboard/wsgi/django.wsgi WSGIPassAuthorization On + WSGIApplicationGroup %{GLOBAL} Require all granted