2

Я пытаюсь загрузить на свой HTTPS сервер, используя curl.Я использую curl для этого, код

curl -v --cacert /tmp/WIN-CLS.vdi.com.pem -T /etc/hosts \
--user administrator:pass_123 https://xxx.xxx.xxxx.xxx

Но я получаю ошибку

*   Trying 192.168.1.230...
* Connected to 192.168.1.230 (192.168.1.230) port 443 (#0)
* Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH
* successfully set certificate verify locations:
*   CAfile: /tmp/WIN-CLS.vdi.com.pem
  CApath: /etc/ssl/certs/
* TLSv1.2 (OUT), TLS handshake, Client hello (1):
* TLSv1.2 (IN), TLS handshake, Server hello (2):
* TLSv1.2 (IN), TLS handshake, Certificate (11):
* TLSv1.2 (OUT), TLS alert, Server hello (2):
* SSL certificate problem: unable to get local issuer certificate
* Closing connection 0
curl: (60) SSL certificate problem: unable to get local issuer certificate
More details here: https://curl.haxx.se/docs/sslcerts.html

curl performs SSL certificate verification by default, using a "bundle"
 of Certificate Authority (CA) public keys (CA certs). If the default
 bundle file isn't adequate, you can specify an alternate file
 using the --cacert option.
If this HTTPS server uses a certificate signed by a CA represented in
 the bundle, the certificate verification probably failed due to a
 problem with the certificate (it might be expired, or the name might
 not match the domain name in the URL).
If you'd like to turn off curl's verification of the certificate, use
 the -k (or --insecure) option.

Мне не нужно использовать опцию -k. Я гуглил по этому поводу, скачал сертификат и указал путь в файле php.ini. Но все же я застрял в этой ошибке.

Любая помощь будет оценена

0