El trabajo cron de Lynx falla en la URL https

El trabajo cron de Lynx falla en la URL https

Tuve un trabajo cron con el siguiente comando

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

que funcionó bien. Luego cambié mi .htaccessarchivo para no permitir nohttpspeticiones. Ahora me sale el siguiente error

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

Intenté cambiar la URL en el comando sin httpsningún efecto. Cual podría ser el problema aquí?

Respuesta1

use curl en lugar de lynx -fuente

COMO:-

rizohttp://ejemplo.com/daemon.php

Respuesta2

use el archivo de configuración (lynx.cfg) para lynx:

FORCE_SSL_PROMPT:YES

entonces:

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

información relacionada