diff options
author | carey.xu <carey.xuhan@huawei.com> | 2016-03-14 15:38:33 +0800 |
---|---|---|
committer | carey xu <carey.xuhan@huawei.com> | 2016-03-18 06:41:56 +0000 |
commit | 00826d9f9131b5b3d76d01c13912496ec6067204 (patch) | |
tree | e6b81ec95c2ec555b6f4b5a0bfc4e957cec837b2 /deploy/adapters/ansible/roles/dashboard/templates/openstack-dashboard.conf.j2 | |
parent | 2490b7463f3a2fc86277f957945b92263495c01c (diff) |
seperate apache2 installtion from dashboard
JIRA: COMPASS-342
Change-Id: I8ddbef46486dbd22f1324bda2d04f7a192b2148e
Signed-off-by: carey.xu <carey.xuhan@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/roles/dashboard/templates/openstack-dashboard.conf.j2')
-rwxr-xr-x | deploy/adapters/ansible/roles/dashboard/templates/openstack-dashboard.conf.j2 | 15 |
1 files changed, 15 insertions, 0 deletions
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 %} + +<VirtualHost {{ internal_ip }}:80> + 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/ + <Directory {{ horizon_dir }}/wsgi> + Order allow,deny + Allow from all + </Directory> +</VirtualHost> + + |