Add openstack-health to status.o.o vhost template
We recently added the openstack-health frontend to be hosted on status.o.o and are currently building the js and moving it to the right location. However we neglected to also update the vhost template to tell apache about the new directory to host. This commit updates the template to ensure we are properly hosting the frontend. Change-Id: I17efdde03e41c5d4b563b9eef8cba8c42a8ab439changes/47/238247/1
parent
61e5513770
commit
0981ffebcf
|
@ -28,6 +28,13 @@ NameVirtualHost <%= @vhost_name %>:<%= @port %>
|
|||
|
||||
Alias /release /srv/static/release
|
||||
|
||||
Alias /openstack-health /srv/static/openstack-health
|
||||
<Directory /srv/static/openstack-health>
|
||||
AllowOverride None
|
||||
Order allow,deny
|
||||
allow from all
|
||||
</Directory>
|
||||
|
||||
<Directory <%= @docroot %>>
|
||||
Options <%= @options %>
|
||||
AllowOverride None
|
||||
|
|
Loading…
Reference in New Issue