aboutsummaryrefslogtreecommitdiff
path: root/src/http/modules/ngx_http_uwsgi_module.c
diff options
context:
space:
mode:
authorTim Taubert <tim@timtaubert.de>2016-06-15 21:05:30 +0100
committerTim Taubert <tim@timtaubert.de>2016-06-15 21:05:30 +0100
commit4f578bfcab740fcfbbb8824822803ad9b3f176cc (patch)
tree361da9087f06bd7eb328a82b691044a5c83a48fb /src/http/modules/ngx_http_uwsgi_module.c
parent6e38998bacb77b1bcaa16a999a722c0c4f961b8e (diff)
downloadnginx-4f578bfcab740fcfbbb8824822803ad9b3f176cc.tar.gz
nginx-4f578bfcab740fcfbbb8824822803ad9b3f176cc.zip
SSL: ngx_ssl_ciphers() to set list of ciphers.
This patch moves various OpenSSL-specific function calls into the OpenSSL module and introduces ngx_ssl_ciphers() to make nginx more crypto-library-agnostic.
Diffstat (limited to 'src/http/modules/ngx_http_uwsgi_module.c')
-rw-r--r--src/http/modules/ngx_http_uwsgi_module.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/http/modules/ngx_http_uwsgi_module.c b/src/http/modules/ngx_http_uwsgi_module.c
index a03c6f697..7f916e840 100644
--- a/src/http/modules/ngx_http_uwsgi_module.c
+++ b/src/http/modules/ngx_http_uwsgi_module.c
@@ -2325,13 +2325,9 @@ ngx_http_uwsgi_set_ssl(ngx_conf_t *cf, ngx_http_uwsgi_loc_conf_t *uwcf)
}
}
- if (SSL_CTX_set_cipher_list(uwcf->upstream.ssl->ctx,
- (const char *) uwcf->ssl_ciphers.data)
- == 0)
+ if (ngx_ssl_ciphers(cf, uwcf->upstream.ssl, &uwcf->ssl_ciphers, 0)
+ != NGX_OK)
{
- ngx_ssl_error(NGX_LOG_EMERG, cf->log, 0,
- "SSL_CTX_set_cipher_list(\"%V\") failed",
- &uwcf->ssl_ciphers);
return NGX_ERROR;
}