Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
getpinga authored Mar 8, 2023
1 parent 8af775c commit a72ea74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions epp.php
Original file line number Diff line number Diff line change
Expand Up @@ -1882,9 +1882,9 @@ function connect($host, $port = 700, $ssl, $timeout = 30)
'verify_peer' => $ssl['verify_peer'],
'verify_peer_name' => false,
'verify_host' => false,
//'cafile' => __DIR__ . '/cafile/' . $ssl['cafile'],
'local_cert' => __DIR__ . '/local_cert/' . $ssl['local_cert'],
'local_pk' => __DIR__ . '/local_pk/' . $ssl['local_pk'],
//'cafile' => __DIR__ . '/' . $ssl['cafile'],
'local_cert' => __DIR__ . '/' . $ssl['local_cert'],
'local_pk' => __DIR__ . '/' . $ssl['local_pk'],
//'passphrase' => $ssl['passphrase'],
'allow_self_signed' => true
)
Expand Down

0 comments on commit a72ea74

Please sign in to comment.