Hello,

I have a Python 3.5/Django 1.10 app served by Apache/mod_wsgi over SSL. It is 
connected to a Postgres 9.5.2 database (with psycopg2==2.6.2) and is running on 
a server at AlwaysData

It works fine most of time but I have sometimes an error that I don't 
understand. 

(SSL error: called a function you should not call)
It seems to occur while querying the database.

# django/db/backends/utils.py line 64
return self.cursor.execute(sql, params)
The problem occurs when REST api (made using django-rest-framework) is called 
by a Angular2 app.

I have activated the following settings:

SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
SECURE_SSL_REDIRECT = True
SESSION_COOKIE_SECURE = True
CSRF_COOKIE_SECURE = True
Does anybody have any idea about the possible cause of the problem?

Best
luc

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/9C60DF34-A93E-4C99-9BDA-49E38B565D0D%40gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to