NGINX + Reverse Proxy + SSL

Igor Sysoev igor at sysoev.ru
Wed Jun 1 14:48:40 MSD 2011


On Wed, Jun 01, 2011 at 06:46:35AM -0400, myckeul wrote:
> Hello ;)
> 
> As part of a project, I need to perform a reverse proxy to a server that
> runs apache https.
> 
> I do not have the certificates on the destination server and I can not
> add them to nginx.
> 
> I tried the following configuration but the site is unavailable:
> 
> server {
>        listen [::]:443 default ssl;
> 
>        server_name www.mydomain2.eu;
> 
>        access_log  /var/log/nginx/www.mydomain2.eu.access.log;
> 
>        error_page 404 = /404.htm;
> 
>        location /404.htm {
>        	root /var/www;
>        }
> 
>        location / {
>               	proxy_set_header X-Forwarded-Host $host;
> 		proxy_set_header X-Forwarded-Server $host;
> 		proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
> 
> 		proxy_pass http://www.mydomain.eu;
> 		proxy_redirect http://www.mydomain.eu http://www.mydomain2.eu;
> 		}
> }
> 
> Thanks for your help if you have any idea ;)

You have to have SSL certificate for www.mydomain2.eu.


-- 
Igor Sysoev



More information about the nginx mailing list