Nginx SSL_write()失败

我不知道为什么,但有时我在nginx中得到这个错误。 有谁知道什么会产生这个错误?

2017/10/25 15:00:34 [crit] 5908#3228: *20789 SSL_write() failed (SSL:) (10053: FormatMessage() error:(15105)) while sending to client, client: 90.200.200.200, server: my.domain.com, request: "GET /faces/production.xhtml HTTP/1.1", upstream: "https://127.0.0.1:443/faces/production.xhtml", host: "my.domain.com", referrer: "https://my.domain.com/faces/production.xhtml" 

另一个例子:

 2017/10/25 15:05:40 [crit] 5908#3228: *21344 SSL_write() failed (SSL:) (10053: FormatMessage() error:(15105)) while sending to client, client: 90.300.300.300, server: my.domain.com, request: "GET /faces/javax.faces.resource/fa/fontawesome-webfont.ttf?ln=primefaces&v=5.2 HTTP/1.1", upstream: "https://127.0.0.1:443/faces/javax.faces.resource/fa/fontawesome-webfont.ttf?ln=primefaces&v=5.2", host: "my.domain.com", referrer: "https://my.domain.com/" 

这是我的configuration:

 ssl_password_file ../ssl/global.pass; server { listen 192.168.1.10:80; server_name *.domain.com; return 301 https://$host$request_uri; } server { listen 192.168.1.10:8443 default_server ssl; server_name *.domain.com; ssl_certificate ../ssl/domain.com.pem; ssl_certificate_key ../ssl/domain.com.key; ssl_dhparam ../ssl/dhparam.pem; ssl_session_cache shared:SSL:10m; ssl_session_timeout 5m; ssl_protocols TLSv1.1 TLSv1.2; ssl_ciphers HIGH:!aNULL:!MD5:!DSS; ssl_prefer_server_ciphers on; #Inform browser that connection is available only via https add_header Strict-Transport-Security max-age=31536000; } server { listen 192.168.1.10:8443; server_name my.domain.com; access_log logs/domain.access.log; error_log logs/domain.error.log; proxy_buffers 16 64k; proxy_buffer_size 128k; location / { proxy_pass https://127.0.0.1:443/; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto https; } } 

nginx的版本:

 1.12.2 Windows