Skip to content

Added ssl context options

Compare
Choose a tag to compare
@transistive transistive released this 22 Jan 17:06
· 1223 commits to main since this release
264893c

SSL context options can now be provided when using a bolt connection. An example of this can be found here:

$client = ClientBuilder::create()
    ->addBoltConnection('main', 'my-bolt-connection@somewhereinthecloud', BoltInjections::create()->withSslContextOptions([ 
          'verify_peer' => true,
          'allow_self_signed' => true
    ])
    ->build();