内容简介:没投过票?千万别说你来过 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 主线版发布
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
The Little Prover
Daniel P. Friedman、Carl Eastlund / The MIT Press / 2015-7-10 / USD 38.00
[FROM www.amazon.com]: The Little Prover introduces inductive proofs as a way to determine facts about computer programs. It is written in an approachable, engaging style of question-and-answer, wi......一起来看看 《The Little Prover》 这本书的介绍吧!