Created
March 30, 2010 01:33
-
-
Save jamiew/348651 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
Was receiving a weird exception in the Integration Console while adding Google Checkout secure notification callbacks to our app: | |
Error: | |
javax.net.ssl.SSLException: Received fatal alert: bad_record_mac | |
Solution: | |
We were only allowing SSLv3 in our nginx ssl_protocols configuration. Changing it to "SSLv3 SSLv2 TLSv1" (the default) fixed it! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment