diff --git a/releasenotes/notes/horizon_webroot-098629f30f69f192.yaml b/releasenotes/notes/horizon_webroot-098629f30f69f192.yaml new file mode 100644 index 00000000..b08f130f --- /dev/null +++ b/releasenotes/notes/horizon_webroot-098629f30f69f192.yaml @@ -0,0 +1,6 @@ +--- +fixes: + - | + Change of ``horizon_webroot`` variable is now respected and will be + reflected in Apache configuration to serve static files and define + wsgi path accordingly. \ No newline at end of file diff --git a/templates/openstack_dashboard.conf.j2 b/templates/openstack_dashboard.conf.j2 index f2c7df13..afdc8105 100644 --- a/templates/openstack_dashboard.conf.j2 +++ b/templates/openstack_dashboard.conf.j2 @@ -48,7 +48,7 @@ Listen {{ horizon_bind_address }}:{{ horizon_listen_port }} RequestHeader set {{ horizon_secure_proxy_ssl_header }} "http" {% endif %} - WSGIScriptAlias / {{ horizon_lib_wsgi_file }} + WSGIScriptAlias {{ horizon_webroot }} {{ horizon_lib_wsgi_file }} WSGIDaemonProcess horizon user={{ horizon_system_user_name }} group={{ horizon_system_group_name }} processes={{ horizon_wsgi_processes | default(horizon_wsgi_threads) }} threads={{ horizon_wsgi_threads }} python-path={{ horizon_lib_dir | dirname }}/site-packages WSGIProcessGroup horizon @@ -66,7 +66,7 @@ Listen {{ horizon_bind_address }}:{{ horizon_listen_port }} - Alias /static {{ horizon_lib_dir }}/static/ + Alias {{ horizon_webroot }}/static {{ horizon_lib_dir }}/static/ Options -FollowSymlinks