Guest User

Untitled

a guest
Jun 29th, 2016
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. <VirtualHost *:80>
  2. WSGIScriptAlias / /home/vagrant/murano/mos-horizon/openstack_dashboard/wsgi/django.wsgi
  3. WSGIDaemonProcess horizon user=vagrant group=vagrant processes=3 threads=10 home=/home/vagrant/murano/mos-horizon display-name=%{GROUP}
  4. WSGIApplicationGroup %{GLOBAL}
  5.  
  6. SetEnv APACHE_RUN_USER vagrant
  7. SetEnv APACHE_RUN_GROUP vagrant
  8. WSGIProcessGroup horizon
  9.  
  10. DocumentRoot /home/vagrant/murano/mos-horizon/.blackhole/
  11. Alias /media /home/vabrant/murano/mos-horizon/openstack_dashboard/static
  12.  
  13. <Directory />
  14. Options FollowSymLinks
  15. AllowOverride None
  16. </Directory>
  17.  
  18. <Directory /home/vagrant/murano/mos-horizon/>
  19. Options Indexes FollowSymLinks MultiViews
  20. AllowOverride None
  21. # Apache 2.4 uses mod_authz_host for access control now (instead of
  22. # "Allow")
  23. <IfVersion < 2.4>
  24. Order allow,deny
  25. Allow from all
  26. </IfVersion>
  27. <IfVersion >= 2.4>
  28. Require all granted
  29. </IfVersion>
  30. </Directory>
  31. <IfVersion >= 2.4>
  32. ErrorLogFormat "%{cu}t %M"
  33. </IfVersion>
  34. ErrorLog /var/log/apache2/horizon_error.log
  35. LogLevel warn
  36. CustomLog /var/log/apache2/horizon_access.log combined
  37. </VirtualHost>
  38.  
  39. WSGISocketPrefix /var/run/apache2
Advertisement
Add Comment
Please, Sign In to add comment