Comment 2 for bug 2067632

Revision history for this message
Nobuto Murata (nobuto) wrote :

root@horizon-0:/# find /var/lib/openstack-dashboard/static/ -name logo-canonical-openstack-*.svg
/var/lib/openstack-dashboard/static/themes/ubuntu/img/logo-canonical-openstack-linear.svg
/var/lib/openstack-dashboard/static/themes/ubuntu/img/logo-canonical-openstack-splash.svg

#splash .login:after { background-image: url("/static/themes/ubuntu/img/logo-canonical-openstack-splash.svg"); background-repeat: no-repeat; background-size: 180px; color: #e95420; content: "Dashboard"; display: block; font-size: 31px; left: 20px; line-height: 2.4em; position: absolute; text-indent: 185px; top: 15px; width: 100%; }

/static/themes/ubuntu/img/logo-canonical-openstack-splash.svg
is translated to:
http://10.20.21.11/static/themes/ubuntu/img/logo-canonical-openstack-linear.svg

But 10.20.21.11 is the traefik endpoint so /static doesn't reach to any container behind it.

This has to be:
http://10.20.21.11/openstack-horizon/static/themes/ubuntu/img/logo-canonical-openstack-linear.svg
or something like that to reach to the horizon container.