# Webhook Receiver This PHP code receives the GitHub webhook, checks them for integrity and publishes messages on rabbitmq. ## Configuration The code expects a `config.php` in it's parent directory. An example configuration looks like this: ```php true, 'verify_peer_name' => true, 'peer_name' => $host, 'verify_depth' => 10, 'ca_file' => '/etc/ssl/certs/ca-certificates.crt', ), array( 'connection_timeout' => $timeout, ) ); return $connection; } function gh_secret() { return "github webhook secret"; } ```