Unable to use multiple IPs with SSL (0.7.64)
danjac
nginx-forum at nginx.us
Thu Oct 21 16:54:40 MSD 2010
The IP addresses are fine, they are configured correctly on the host as
far as I (and our hosting company) can verify.
> Have you read this
> http://nginx.org/en/docs/http/configuring_https_servers.html
> ?
I take it you mean this section:
[quote]
The oldest and most robust method to resolve the issue is to assign a
separate IP address for every HTTPS server:
server {
listen 192.168.1.1:443;
server_name www.nginx.com;
ssl on;
ssl_certificate www.nginx.com.crt;
...
}
server {
listen 192.168.1.2:443;
server_name www.nginx.org;
ssl on;
ssl_certificate www.nginx.org.crt;
...
}
[/quote]
Which is what I've been trying to do. Unless you mean some other
specific part of that page ?
Posted at Nginx Forum: http://forum.nginx.org/read.php?2,142634,143119#msg-143119
More information about the nginx
mailing list