a secure cookie for the session cookie. If this is set to True, the cookie will be marked as “secure,” which means browsers may ensure that the cookie is only sent under an HTTPS connection. Solo tiene sentido para sites con HTTPS!
a secure cookie for the CSRF cookie. If this is set to True, the cookie will be marked as “secure,” which means browsers may ensure that the cookie is only sent under an HTTPS connection. Solo tiene sentido para sites con HTTPS!
HTTPOnly flag on the session cookie. If this is set to True, client-side JavaScript will not to be able to access the session cookie. El default es seguro, verificá tu aplicacion. Entendé y documentá porque es necesario tenerlo en False.
strings representing the host/domain names that this Django site can serve. This is a security measure to prevent an attacker from poisoning caches and password reset emails with links to malicious hosts by submitting requests with a fake HTTP Host header. Warning! ‘*’ en tu ALLOWED_HOSTS?
secret key for a particular Django installation. This is used to provide cryptographic signing, and should be set to a unique, unpredictable value. django-admin.py startproject automatically adds a randomly-generated SECRET_KEY to each new project.