Nginx模塊-ngx_http_ssl_module

ngx_http_ssl_module簡介

爲https提供支持html

ngx_http_ssl_module參數解釋

  1. ssl on|off;
  2. ssl_certificate file; #當前虛擬主機使用PEM格式的證書文件
  3. ssl_certificate_key file; #當前虛擬主機上與其證書匹配的私鑰文件
  4. ssl_protocols [SSLv2] [SSLv3] [TLSv1] [TLSv1.1] [TLSv1.2]; #支持ssl協議版本,默認爲後三個
  5. ssl_session_cache off|none| [builtin[:size]] | [shared:name:size];
    1. builtin[:size]:使用OpenSSL內建的緩存,此緩存爲每一個worker進程私有
    2. shared:name:size:在各worker之間使用一個共享的緩存
  6. ssl_session_timeout time;客戶端一側的鏈接能夠複用ssl_session_cache中緩存的ssl參數的有效時長

配置示例:

server {
      listen 443 ssl;
      servername www.xxx.com;
      root /opt/nginx/html;
      ssl on;
      ssl_certificate /opt/nginx/ssl/nginx.crt;
      ssl_certificate_key /opt/nginx/ssl/nginx.key;
      ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
      ssl_session_cache shared:sslcache:20m;
}
相關文章
相關標籤/搜索