15 lines
389 B
Plaintext
15 lines
389 B
Plaintext
<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>
|
|
|