31 lines
1019 B
Plaintext
31 lines
1019 B
Plaintext
<VirtualHost *:80>
|
|
ServerName openstack-dashboard.example.com
|
|
ServerAdmin webmaster@openstack-dashboard.example.com
|
|
|
|
ErrorLog /var/log/httpd/openstack-dashboard-error_log
|
|
TransferLog /var/log/httpd/openstack-dashboard-access_log
|
|
|
|
WSGIScriptAlias / /usr/share/openstack-dashboard/openstack_dashboard/wsgi.py
|
|
WSGIDaemonProcess horizon user=apache group=apache processes=3 threads=10
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
WSGIProcessGroup horizon
|
|
SetEnv APACHE_RUN_USER apache
|
|
SetEnv APACHE_RUN_GROUP apache
|
|
|
|
DocumentRoot /usr/share/openstack-dashboard/
|
|
Alias /media /usr/share/openstack-dashboard/media
|
|
Alias /static /usr/share/openstack-dashboard/static
|
|
|
|
<Location /static>
|
|
SetOutputFilter DEFLATE
|
|
ExpiresActive On
|
|
ExpiresDefault "access plus 1 month"
|
|
</Location>
|
|
|
|
<Directory /usr/share/openstack-dashboard/>
|
|
Options FollowSymLinks MultiViews
|
|
AllowOverride None
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost>
|