I have a django app that I'm trying to serve over a secure connection. Apache's ssl engine and my certificate are definately working, as my static media is served over a secure connection.
However when a request comes from django, firefox suddenly says the site is not secure.
My vhost looks like this (with simplified paths):
<VirtualHost *:443>
ServerAdmin webmaster@localhost
ServerName my.site.com
SSLEngine on
SSLCertificateFile /path/to/cert.pem
SSLCertificateKeyFile /path/to/privatekey.pem
DocumentRoot /var/www/
Alias /static/myapp/ /path/to/myapp/static/
WSGIScriptAlias / /path/to/myapp.wsgi
ErrorLog /path/to/error.log
LogLevel warn
CustomLog /path/to/access.log combined
</VirtualHost>
Any ideas why this might happen/what I can do about it?