Sorry, I don't have the answer, but, out of curiosity, what is the benefit of using nginx in between ? regards -- Dominique Chabord - SISalp --
A Dimarts, 18 de setembre de 2012 22:59:02, Mark Hayden (local) va escriure:
> I may eventually migrate towards a VPN-based solution--especially if this
> situation does not work, but then I have to put not only he tryton client
> on remote machines but also openVPN client and config and instructions on
> how to connect the VPN before opening Tryton.� This is do-able but may
> intimidate some of the users.
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;
}
}