41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
<VirtualHost *:80>
|
|
WSGIScriptAlias /dashboard /usr/share/openstack-dashboard/openstack_dashboard/wsgi.py
|
|
WSGIDaemonProcess horizon user=apache group=apache processes=3 threads=10 home=/usr/share/openstack-dashboard/ display-name=%{GROUP}
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
|
|
SetEnv APACHE_RUN_USER horizon
|
|
SetEnv APACHE_RUN_GROUP horizon
|
|
WSGIProcessGroup horizon
|
|
|
|
Alias /dashboard/static /usr/share/openstack-dashboard/static
|
|
|
|
RedirectMatch "^/$" "/dashboard/"
|
|
|
|
<Directory />
|
|
Options FollowSymLinks
|
|
AllowOverride None
|
|
</Directory>
|
|
|
|
<Directory /usr/share/openstack-dashboard/>
|
|
Options Indexes FollowSymLinks MultiViews
|
|
AllowOverride None
|
|
# Apache 2.4 uses mod_authz_host for access control now (instead of
|
|
# "Allow")
|
|
<IfVersion < 2.4>
|
|
Order allow,deny
|
|
Allow from all
|
|
</IfVersion>
|
|
<IfVersion >= 2.4>
|
|
Require all granted
|
|
</IfVersion>
|
|
</Directory>
|
|
<IfVersion >= 2.4>
|
|
ErrorLogFormat "%{cu}t %M"
|
|
</IfVersion>
|
|
ErrorLog /var/log/httpd/horizon_error.log
|
|
LogLevel warn
|
|
CustomLog /var/log/httpd/horizon_access.log combined
|
|
</VirtualHost>
|
|
|
|
WSGISocketPrefix /var/run/httpd
|