NGINX SNI
Well, I might as well round out my
Server Name Indication (SNI)
sort of series
by taking a look an nginx. Does your nginx
support SNI? You can check by running nginx -V
, but unless your nginx
was built when dinosaurs roamed the earth, you should see:
1
|
|
However, if you have a really, really old version of OpenSSL, you might see:
1 2 3 |
|
If you do see that, just run halt -p
and walk away. They aren’t
paying you enough to deal with that old server.
Presuming you do have SNI support, the rest is simple. Just as with Apache, all you need to do is tell each virtual host to use it’s own certificate:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
Boom! Done!