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
When deploying StoryScapes, an HTTP 404 is returned for all non-composer static assets. Static assets were configured properly inside django as tested with:
When deploying StoryScapes, an HTTP 404 is returned for all non-composer static assets. Static assets were configured properly inside django as tested with:
python manage.py findstatic vendor/bootstrap/dist/css/bootstrap.min.css
When trying to access static assets through the Storyscapes URL or via
http://django:8000
inside containers, an HTTP 404 is returned.After some research, setting
DEBUG=True
solves this issue temporarily. Static files are not served via django unlessDEBUG=True
.Recent changes to NGINX to proxy non-composer static assets to django looks to be the culprit.
The Storyscapes BOSH release has temporarily added
DEBUG=True
to workaround this issue.The text was updated successfully, but these errors were encountered: