Created
November 11, 2011 13:33
-
-
Save kalabiyau/1358011 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
listen blabla:443; | |
server_name bla; | |
ssl on; | |
ssl_certificate ssl/cert.pem; | |
ssl_certificate_key ssl/cert.key; | |
ssl_session_timeout 5m; | |
ssl_protocols SSLv3 TLSv1; | |
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+SSLv2:+EXP; | |
ssl_prefer_server_ciphers on; | |
charset utf-8; | |
access_log ... main; | |
error_log ... error; | |
location / { | |
... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment