diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-10-19 12:35:01 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-10-19 12:35:01 +0000 |
commit | a1e36777f4fcb34ce90d27f2a8bf1455053bfa3a (patch) | |
tree | 601dd59857a5122803fdb331e3037ab3b29fd7bb /src | |
parent | 145dcc180a618829847f5104db60b52e5455c94a (diff) | |
download | nginx-a1e36777f4fcb34ce90d27f2a8bf1455053bfa3a.tar.gz nginx-a1e36777f4fcb34ce90d27f2a8bf1455053bfa3a.zip |
add SNI support in -V output
Diffstat (limited to 'src')
-rw-r--r-- | src/core/nginx.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/nginx.c b/src/core/nginx.c index 29eee6a99..226208773 100644 --- a/src/core/nginx.c +++ b/src/core/nginx.c @@ -239,6 +239,9 @@ main(int argc, char *const *argv) #ifdef NGX_COMPILER ngx_log_stderr(0, "built by " NGX_COMPILER); #endif +#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME + ngx_log_stderr(0, "TLS SNI support enabled"); +#endif ngx_log_stderr(0, "configure arguments:" NGX_CONFIGURE); } |