protonemedia / laravel-paddle

Paddle.com API integration for Laravel with support for webhooks/events
https://protone.media/en/blog/a-new-laravel-package-to-handle-payments-and-subscriptions-with-paddle
MIT License
203 stars 17 forks source link

SSLv3 error on webhook for Paddle #11

Closed petericebear closed 4 years ago

petericebear commented 4 years ago

Hi,

On a Laravel forge spinned up server I am trying to use the package but I get this error: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure

This is with the Webhook Simulator tester.

Any ideas how to get it to work?

schollf commented 4 years ago

This is a configuration error on your webserver. If you are using nginx change the SSL protocols to:

ssl_protocols TLSv1.2 TLSv1.3;ssl_ciphers EECDH+AESGCM:EDH+AESGCM;ssl_prefer_server_ciphers on;

pascalbaljet commented 4 years ago

There seems to be an issue with webhooks calls on Forge servers with the default SSL configuration. See also: https://github.com/pascalbaljetmedia/laravel-paddle/issues/1

petericebear commented 4 years ago

Thanks! Got it working with that.