From 56a742904a1d6331d5a8bc28982e1e606af81ced Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Sat, 5 Oct 2024 10:18:50 +0900 Subject: [PATCH] cfmgrv4 init...1 --- app/Libraries/MySocket/CloudflareSocket.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Libraries/MySocket/CloudflareSocket.php b/app/Libraries/MySocket/CloudflareSocket.php index f466926..bb68c30 100644 --- a/app/Libraries/MySocket/CloudflareSocket.php +++ b/app/Libraries/MySocket/CloudflareSocket.php @@ -31,7 +31,7 @@ abstract class CloudflareSocket extends CommonLibrary 'X-Auth-Key' => $this->_auth_entity->getAuthKey(), // 인증 토큰 사용 'Content-Type' => 'application/json', ], - 'verify' => false // SSL 인증서 검증을 비활성화 + 'verify' => getenv("socket.web.ssl.verify") == "true" ? true : false, // SSL 인증서 검증을 비활성화 ]); } return $this->_client;