Re: config reverse proxy nginx to apache2

2016-01-02 Thread Thierry
Hi, The nginx is the frontend. My main apache web server has 3 vhosts. vhost1 and vhost2 have the same ssl certif when vhost3 has a different one. I have add on my reverse proxy nginx the ssl_certificate and ssl_certificate_key (same as my apache config) but how to deal with the third ssl cert

Re: config reverse proxy nginx to apache2

2016-01-02 Thread Anoop Alias
Is this apache behind nginx or nginx behing apache?. Whichever be the case - The rule is that the frontend (or the server terminating 443 ) need to have the cert configured as the web browsers need to talk to it with ssl .So in short if nginx is the frontend it must have the SSL eventhough apache(

Re: config reverse proxy nginx to apache2

2016-01-02 Thread Thierry
Bonjour, I have made some modification on my nginx reverse proxy server. I have add these lines: listen 445; server_name *.domain.org; ssl on; ssl_certificate /etc/ssl/certs/file.crt; (same as apache)