==
윈도우로 PHH서버를 돌리고있었다.
https://curl.se/docs/caextract.html
위의 사이트에서 cacert.pem파일을 다운로드 받는다
pem파일 위치는 적당히 알아서 잘맞춰준다.
사용중인 PHP의 php.ini 파일을 열어서 수정한다.
curl.cainfo 부분과 openssl.cafile 부분이 주석쳐진부분이 보일것이다.
[curl]
; A default value for the CURLOPT_CAINFO option. This is required to be an
; absolute path.
curl.cainfo =C:\Apache24\conf\cacert.pem
[openssl]
; The location of a Certificate Authority (CA) file on the local filesystem
; to use when verifying the identity of SSL/TLS peers. Most users should
; not specify a value for this directive as PHP will attempt to use the
; OS-managed cert stores in its absence. If specified, this value may still
; be overridden on a per-stream basis via the "cafile" SSL stream context
; option.
openssl.cafile=C:\Apache24\conf\cacert.pem
해당부분을 다운로드받은 cacert.pem파일 경로를 맞춘다.
'기타 > PHP' 카테고리의 다른 글
strtotime 1달전 함수문제 (0) | 2024.11.11 |
---|---|
There is no active transaction (0) | 2022.10.26 |
'' // "" // 따옴표처리 (0) | 2020.03.31 |
fcm (0) | 2019.09.10 |
curl (0) | 2019.09.10 |