O trabalho cron do Lynx falha no URL https

O trabalho cron do Lynx falha no URL https

Eu tive um cron job com o seguinte comando

lynx -source http://example.com/daemon.php

que funcionou bem. Eu mudei meu .htaccessarquivo para proibir nãohttpssolicitações de. Agora, recebo o seguinte erro

Looking up example.com
Making HTTPS connection to example.com
Retrying connection without TLS.
Looking up example.com
Making HTTPS connection to example.com
Alert!: Unable to make secure connection to remote host.

lynx: Can't access startfile http://example.com/daemon.php

Tentei alterar o URL no comando httpssem efeito. Qual poderia ser o problema aqui?

Responder1

use curl em vez de lynx -source

COMO:-

ondulaçãohttp://example.com/daemon.php

Responder2

use o arquivo de configuração (lynx.cfg) para o lynx:

FORCE_SSL_PROMPT:YES

então:

lynx -cfg=lynx.cfg https://sslsecuresite.com

informação relacionada