NGINX + Reverse Proxy + SSL
myckeul
nginx-forum at nginx.us
Wed Jun 1 14:46:35 MSD 2011
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 ;)
Myckeul
Posted at Nginx Forum: http://forum.nginx.org/read.php?2,202710,202710#msg-202710
More information about the nginx
mailing list