cfmgrv4 init...1

This commit is contained in:
최준흠 2024-10-05 10:18:50 +09:00
parent b2d4d60f76
commit 56a742904a

View File

@ -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;