devstack/files/000-default.template

29 lines
796 B
Plaintext
Raw Normal View History

2011-09-11 17:53:34 -07:00
<VirtualHost *:80>
WSGIScriptAlias / %HORIZON_DIR%/openstack_dashboard/wsgi/django.wsgi
WSGIDaemonProcess horizon user=%USER% group=%GROUP% processes=3 threads=10
SetEnv APACHE_RUN_USER %USER%
SetEnv APACHE_RUN_GROUP %GROUP%
2011-10-28 14:00:21 -07:00
WSGIProcessGroup horizon
2011-09-11 17:53:34 -07:00
2011-10-28 14:00:21 -07:00
DocumentRoot %HORIZON_DIR%/.blackhole/
Alias /media %HORIZON_DIR%/openstack_dashboard/static
2011-11-15 10:55:36 -06:00
Alias /vpn /opt/stack/vpn
2011-09-11 17:53:34 -07:00
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
2011-10-28 14:00:21 -07:00
<Directory %HORIZON_DIR%/>
2011-09-11 17:53:34 -07:00
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
LogLevel warn
CustomLog /var/log/apache2/access.log combined
</VirtualHost>