Lynx cron ジョブが https URL で失敗する

Lynx cron ジョブが https URL で失敗する

次のコマンドでcronジョブを実行しました

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

うまくいきました。その後、.htaccessファイルを変更して、httpsリクエスト。今、次のエラーが発生します

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

コマンド内の URL を に変更してみましたが、https効果はありませんでした。何が問題なのでしょうか?

答え1

lynx -source の代わりに curl を使用する

のように:-

カールhttp://example.com/daemon.php

答え2

lynx の設定ファイル (lynx.cfg) を使用します。

FORCE_SSL_PROMPT:YES

それから:

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

関連情報