|  | <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> | 
|  |  |