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

Getting error in webhook call. #1

Closed hemratna closed 4 years ago

hemratna commented 4 years ago

Thanks a lot for the amazing package.

While making a webhook call from the Paddle webhook simulator, I am getting below error.

error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure

I configure the server with Laravel Forge.

Is there any steps I missing regarding the configuration.

hemratna commented 4 years ago

Below you'll also find configurations SSL for each server:

nginx server (Forge)

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

Apache server:

SSLProtocol -all +TLSv1.3 +TLSv1.2; SSLCipherSuite EECDH+AESGCM:EDH+AESGCM; SSLHonorCipherOrder On;

Lighttpd server:

ssl.openssl.ssl-conf-cmd = ("Protocol" => "-TLSv1.1, -TLSv1, -SSLv3") # v1.4.48 or up ssl.ec-curve = "secp384r1"; ssl.cipher-list = "EECDH+AESGCM:EDH+AESGCM"; ssl.honor-cipher-order = "enable";

pascalbaljet commented 4 years ago

These settings fixed the problem?

hemratna commented 4 years ago

@pascalbaljet Yes, Fixed in my case.