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

使用curl代替lynx-source

喜歡:-

捲曲http://example.com/daemon.php

答案2

使用 lynx 的設定檔 (lynx.cfg):

FORCE_SSL_PROMPT:YES

然後:

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

相關內容