From 00826d9f9131b5b3d76d01c13912496ec6067204 Mon Sep 17 00:00:00 2001 From: "carey.xu" Date: Mon, 14 Mar 2016 15:38:33 +0800 Subject: seperate apache2 installtion from dashboard JIRA: COMPASS-342 Change-Id: I8ddbef46486dbd22f1324bda2d04f7a192b2148e Signed-off-by: carey.xu --- .../roles/dashboard/templates/openstack-dashboard.conf.j2 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 deploy/adapters/ansible/roles/dashboard/templates/openstack-dashboard.conf.j2 (limited to 'deploy/adapters/ansible/roles/dashboard/templates') diff --git a/deploy/adapters/ansible/roles/dashboard/templates/openstack-dashboard.conf.j2 b/deploy/adapters/ansible/roles/dashboard/templates/openstack-dashboard.conf.j2 new file mode 100755 index 00000000..403fcc22 --- /dev/null +++ b/deploy/adapters/ansible/roles/dashboard/templates/openstack-dashboard.conf.j2 @@ -0,0 +1,15 @@ +{% set work_threads = (ansible_processor_vcpus + 1) // 2 %} + + + WSGIScriptAlias /horizon {{ horizon_dir }}/wsgi/django.wsgi + WSGIDaemonProcess horizon user=horizon group=horizon processes={{ work_threads }} 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