Django - Security Best Practices
Given the following Django settings snippet, what will happen when a user accesses the site over HTTP?
SECURE_SSL_REDIRECT = True SESSION_COOKIE_SECURE = True CSRF_COOKIE_SECURE = True
