diff --git a/Classes/Service/SentryService.php b/Classes/Service/SentryService.php index e6e63a0..c794561 100644 --- a/Classes/Service/SentryService.php +++ b/Classes/Service/SentryService.php @@ -37,6 +37,9 @@ public static function inititalize(): bool 'environment' => ConfigurationService::getEnvironment(), 'in_app_include' => [Environment::getExtensionsPath()], 'http_proxy' => $GLOBALS['TYPO3_CONF_VARS']['HTTP']['proxy'] ?? null, + 'http_ssl_verify_peer' => (bool)($GLOBALS['TYPO3_CONF_VARS']['HTTP']['verify'] ?? true), + 'http_timeout' => (int)($GLOBALS['TYPO3_CONF_VARS']['HTTP']['http_timeout'] ?? 5), + 'http_connect_timeout' => (int)($GLOBALS['TYPO3_CONF_VARS']['HTTP']['connect_timeout'] ?? 2), 'attach_stacktrace' => true, 'before_send' => function (Event $event): Event { return SentryLogWriter::cleanupStacktrace($event);