内容简介:没投过票?千万别说你来过 OSC https://www.oschina.net/project/top_cn_2020 nginx 1.19.4 主线版已发布,更新内容如下: Feature:新增 "ssl_conf_command", "proxy_ssl_conf_command","grpc_ssl_conf_command"...
没投过票?千万别说你来过 OSC
https://www.oschina.net/project/top_cn_2020
nginx 1.19.4 主线版已发布,更新内容如下:
- Feature:新增 "ssl_conf_command", "proxy_ssl_conf_command","grpc_ssl_conf_command"和"uwsgi_ssl_conf_command"指令
- Feature:新增"ssl_reject_handshake"指令
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;
}
- Feature:邮件代理新增"proxy_smtp_auth"指令
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- nginx 1.19.0 主线版发布
- nginx 1.19.1 主线版发布
- nginx 1.19.3 主线版发布
- nginx 1.19.5 主线版发布
- nginx 1.19.6 主线版发布
- nginx 1.19.7 主线版发布
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
iOS游戏编程之从零开始
李华明 / 2013-2 / 59.00元
《iOS游戏编程之从零开始:Cocos2d-x与cocos2d引擎游戏开发》是作者继《android游戏编程之从零开始》热销之后编写的又一本、基于cocos2d—x2.x和cocos2d—iphone版本,讲述ios平台游戏开发的新作。《iOS游戏编程之从零开始:Cocos2d-x与cocos2d引擎游戏开发》分为两个部分共11章,内容主要包括cocos2d—x引擎游戏开发的基础,常用的类、方法及......一起来看看 《iOS游戏编程之从零开始》 这本书的介绍吧!