[Answered ]-Wagtail uploads and Django deploy not from project_root?

2👍

Django intentionally doesn’t serve static files when it’s in production mode (DEBUG = False), because it’s more efficient for your webserver to serve those files directly, and take Django out of the process. It’s up to you to configure the webserver to do this, but the Django documentation offers some pointers.

(I don’t know where your Django installation is getting ~/env/lib/python2.7/static from, though.)

👤gasman

Leave a comment