▷ Como corregir el error CSRF verification failed en Django y Certbot.
Cuando tengas problemas con el error CSRF verification failed en Django y Certbot puedes corregirlo de la siguiente manera.
- Busca el fichero settings.py en tu proyecto Django.
- Agrega la siguiente linea de codigo en el fichero settings.py. En este caso agregamos el dominio de mi sitio web marlonfalcon.com.
CSRF_TRUSTED_ORIGINS = [
'https://marlonfalcon.com',
'https://*.marlonfalcon.com',
'https://*.127.0.0.1',
'https://*.95.217.15.100',
'https://95.217.15.100',
]
- Reinicia el servidor Django.
mfalconsoft@gmail.com / +34 (662) 47 0645RSS