# HG changeset patch # User Igor Sysoev # Date 1255955701 0 # Node ID 794613efbb7110815b6abd7fc5b6a0dad3e78cbc # Parent b82c623a607eea4692808830632f3b3385134383 add SNI support in -V output diff --git a/src/core/nginx.c b/src/core/nginx.c --- 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); }