IT博客汇
  • 首页
  • 精华
  • 技术
  • 设计
  • 资讯
  • 扯淡
  • 权利声明
  • 登录 注册

    Module ngx_http_ssl_module ssl_reject_handshake

    肥兔发表于 2023-11-16 11:13:00
    love 0

    If enabled, SSL handshakes in the server block will be rejected.

    For example, in the following configuration, SSL handshakes with server names other than example.com are rejected:

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


沪ICP备19023445号-2号
友情链接