nginx 1.19.4 主线版发布

没投过票?千万别说你来过 OSC
https://www.oschina.net/project/top_cn_2020

nginx 1.19.4 主线版已发布,更新内容如下:

ssl_reject_handshake 指令位于 ngx_http_ssl_module 模块。用法如下所示,开启后服务器块中的 SSL 握手将被拒绝。

Syntax:	ssl_reject_handshake on | off;
Default:	
ssl_reject_handshake off;
Context:	http, server

例如在以下配置中,拒绝使用除example.com以外的服务器名的 SSL 握手:

server {
    listen               443 ssl;
    ssl_reject_handshake on;
}

server {
    listen              443 ssl;
    server_name         example.com;
    ssl_certificate     example.com.crt;
    ssl_certificate_key example.com.key;
}

下载地址 | 更新说明

猜你喜欢

转载自www.oschina.net/news/119594/nginx-1-9-4-released