----- Ursprüngliche Mail -----
> From my investgation it is quite clear that with nginx in the middle
> (with encryption on--it works without) the client's connection never
> makes it to the Tryton server in any way--it stops at the NGINX
> server with a 400 error, though it isn't clear what is happening to
> make SSL fail.

Here is our configuration for nginx, maybe it helps:

server {
        listen   8000;
        server_name  <SERVER_NAME>;

        ssl  on;
        ssl_certificate <PATH_TO_CERT>;
        ssl_certificate_key <PATH_TO_KEY>;

        location / { 
                proxy_pass http://<SERVER_IP>:8000;
        }   
}

-- 
-- 
[email protected] mailing list



Reply via email to