Configuring HTTPS servers

Looking to make your web app faster? Look no further! NGINX Plus for HTTP & TCP load balancing, caching and SSL offload — Free 30-Day Trial english русский news about download security documentation faq books support donation trac wiki twitter blog HTTPS server optimization SSL certificate chains A single HTTP/HTTPS server Name-based HTTPS servers An SSL certificate with several names Server Name Indication Compatibility To configure an HTTPS server, the ssl parameter must be enabled on listening sockets in the server block, and the locations of the server certificate and private key files should be specified: server { listen 443 ssl ; server_name www.example.com; ssl_certificate www.example.com.crt ; ssl_certificate_key www.example.com.key ; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers HIGH:!aNULL:!MD5; ... } The ser...

Linked on 2015-03-11 21:59:28 | Similar Links