From 772aad8da1d2f6ad53eaeaa72dafbe1640e0e1d6 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Mon, 18 Jul 2016 19:33:26 +0100 Subject: [PATCH] Allow use of http proxies in cli (or cgi with config caching) --- config/bugsnag.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/bugsnag.php b/config/bugsnag.php index 22fba017..c9cc7756 100644 --- a/config/bugsnag.php +++ b/config/bugsnag.php @@ -99,6 +99,7 @@ */ 'proxy' => array_filter([ + 'http' => env('HTTP_PROXY'), 'https' => env('HTTPS_PROXY'), 'no' => empty(env('NO_PROXY')) ? null : explode(',', str_replace(' ', '', env('NO_PROXY'))), ]),