Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Nothing. default apache page at root, 404 at ${url}:443
- <VirtualHost *:443>
- 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/
- <Location /usr/share/openstack-dashboard/openstack_dashboard/wsgi>
- Order allow,deny
- Allow from all
- </Location>
- </VirtualHost>
- =============================================================================================
- -- Works like a champ
- <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/
- <Location /usr/share/openstack-dashboard/openstack_dashboard/wsgi>
- Order allow,deny
- Allow from all
- </Location>
- </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement