blob: a5a791a3630b53dc1f472076bb482b9d68563fb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<VirtualHost *:80>
WSGIScriptAlias / /usr/share/openstack-dashboard/openstack_dashboard/wsgi/django.wsgi
WSGIDaemonProcess horizon user=www-data group=www-data processes=3 threads=10
Alias /static /usr/share/openstack-dashboard/openstack_dashboard/static/
<Directory /usr/share/openstack-dashboard/openstack_dashboard/wsgi>
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
|