Josh:
Are you running behind a web server? We faced the same problem when running with gunicorn and nginx with ssl. In our case, we had to set some additional nginx proxy options to get it to do the right thing:
location / {
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Protocol ssl;
client_max_body_size 10m;
}
You can also search for "static_proxy", which relate to how mezzanine proxies the content for TinyMCE to avoid cross-site-scripting blockers.
Take care,
Lorin
--
Lorin Hochstein
Lead Architect - Cloud Services
Nimbis Services, Inc.