NGINX + Reverse Proxy + SSL

Hello :wink:

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 :wink:

Myckeul

Posted at Nginx Forum:

On Wed, Jun 01, 2011 at 06:46:35AM -0400, myckeul wrote:

server {
}

Thanks for your help if you have any idea :wink:

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

–
Igor S.