Last active
August 29, 2015 14:07
-
-
Save bootjp/7b9e4b854475be36b9b9 to your computer and use it in GitHub Desktop.
NginxでSSLの時
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 443 ssl; | |
server_name example.com; | |
ssl_certificate /etc/ssl/certs/hogehoge; | |
ssl_certificate_key /etc/ssl/certs/hogehoge; | |
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; | |
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP; | |
ssl_prefer_server_ciphers on; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment