John:
When you run a django app like mezzanine in production mode using a tool like gunicorn, it won't serve static files, such as those from your /static directory. The recommended approach is to configure your web server to serve the static content.
for example, we have the following lines in our nginx config file for doing this:
location /static/ {
root /home/deploy/our-mezzanine-app/projects/our-project;
access_log off;
log_not_found off;
}
Take care,
Lorin
--
Lorin Hochstein
Lead Architect - Cloud Services
Nimbis Services, Inc.