From 574a9d68424564ed35cdbf88276dba9e49adf629 Mon Sep 17 00:00:00 2001 From: liyuenan Date: Mon, 28 Nov 2016 11:30:39 +0800 Subject: Fix the apache service restart failed in xenial JIRA: COMPASS-489 Change-Id: Ic6d57c3525a3165d6cedd969c21bd4a5dfba1b4e Signed-off-by: liyuenan --- .../dashboard/templates/openstack-dashboard.conf.j2 | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 deploy/adapters/ansible/openstack_mitaka_xenial/roles/dashboard/templates/openstack-dashboard.conf.j2 (limited to 'deploy/adapters/ansible/openstack_mitaka_xenial/roles/dashboard') diff --git a/deploy/adapters/ansible/openstack_mitaka_xenial/roles/dashboard/templates/openstack-dashboard.conf.j2 b/deploy/adapters/ansible/openstack_mitaka_xenial/roles/dashboard/templates/openstack-dashboard.conf.j2 new file mode 100644 index 00000000..96472779 --- /dev/null +++ b/deploy/adapters/ansible/openstack_mitaka_xenial/roles/dashboard/templates/openstack-dashboard.conf.j2 @@ -0,0 +1,16 @@ +{% set work_threads = (ansible_processor_vcpus + 1) // 2 %} +{% if work_threads > 10 %} +{% set work_threads = 10 %} +{% endif %} + + + WSGIScriptAlias /horizon {{ horizon_dir }}/wsgi/django.wsgi + WSGIDaemonProcess horizon user=horizon group=horizon processes=4 threads={{ work_threads }} + WSGIProcessGroup horizon + Alias /static {{ horizon_dir }}/static/ + Alias /horizon/static {{ horizon_dir }}/static/ + + Order allow,deny + Allow from all + + -- cgit 1.2.3-korg