You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Logging into the Plone admin site on the demo sites (by adding /api to the path), results in some broken icons:
The developer console shows that some fonts aren't being loaded because the URL path is /++plone++static/ rather than /api/++plone++static/. There is an outstanding issue for this.
A workaround is to add a re-write in nginx along the lines of:
rewrite ^(/\+\+plone\+\+static/.*)$ /api/$1 last;
The text was updated successfully, but these errors were encountered:
Logging into the Plone admin site on the demo sites (by adding
/api
to the path), results in some broken icons:The developer console shows that some fonts aren't being loaded because the URL path is
/++plone++static/
rather than/api/++plone++static/
. There is an outstanding issue for this.A workaround is to add a re-write in nginx along the lines of:
The text was updated successfully, but these errors were encountered: