9c7c9083a4
* update horizon apache config * updates apts for horizon * better logging for horizon * keystone conf settings * only add swift endpoint if it is enabled * new nova paste Change-Id: I1edacbe5d8adc4bd5265d36abcaf01ce5490aefd
29 lines
814 B
Plaintext
29 lines
814 B
Plaintext
<VirtualHost *:80>
|
|
WSGIScriptAlias / %HORIZON_DIR%/openstack-dashboard/dashboard/wsgi/django.wsgi
|
|
WSGIDaemonProcess horizon user=%USER% group=%USER% processes=3 threads=10
|
|
SetEnv APACHE_RUN_USER %USER%
|
|
SetEnv APACHE_RUN_GROUP %USER%
|
|
WSGIProcessGroup horizon
|
|
|
|
DocumentRoot %HORIZON_DIR%/.blackhole/
|
|
Alias /media %HORIZON_DIR%/openstack-dashboard/dashboard/static
|
|
Alias /vpn /opt/stack/vpn
|
|
|
|
<Directory />
|
|
Options FollowSymLinks
|
|
AllowOverride None
|
|
</Directory>
|
|
|
|
<Directory %HORIZON_DIR%/>
|
|
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>
|
|
|