Something to ensure website’s SSL is PCI compliant using nginx.
server { .. ssl on; ssl_certificate domain.chained.crt; ssl_certificate_key domain.key; ssl_session_timeout 5m; ssl_protocols SSLv3 TLSv1; ssl_ciphers RC4:HIGH:!aNULL:!MD5:!kEDH; ssl_prefer_server_ciphers on; .. }
SPDY and nginx is easy. SSL is forced, so it’ll be rock solid and secure! There’s a nginx SPDY patchset available for download. Even though it’s in early beta stadium, it works just as thought to do.
LikeLike