diff options
Diffstat (limited to 'deploy/adapters/ansible/roles/apache/templates')
-rwxr-xr-x | deploy/adapters/ansible/roles/apache/templates/openstack-dashboard.conf.j2 | 15 | ||||
-rw-r--r-- | deploy/adapters/ansible/roles/apache/templates/ports.conf.j2 | 1 |
2 files changed, 16 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/apache/templates/openstack-dashboard.conf.j2 b/deploy/adapters/ansible/roles/apache/templates/openstack-dashboard.conf.j2 new file mode 100755 index 00000000..403fcc22 --- /dev/null +++ b/deploy/adapters/ansible/roles/apache/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> + + diff --git a/deploy/adapters/ansible/roles/apache/templates/ports.conf.j2 b/deploy/adapters/ansible/roles/apache/templates/ports.conf.j2 new file mode 100644 index 00000000..be27d195 --- /dev/null +++ b/deploy/adapters/ansible/roles/apache/templates/ports.conf.j2 @@ -0,0 +1 @@ +Listen {{ internal_ip }}:80 |