Lynx-Cron-Job schlägt bei https-URL fehl

Lynx-Cron-Job schlägt bei https-URL fehl

Ich hatte einen Cron-Job mit dem folgenden Befehl

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

das hat gut funktioniert. Ich habe dann meine .htaccessDatei geändert, um nicht zuzulassenhttpsAnfragen. Jetzt erhalte ich die folgende Fehlermeldung

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

Ich habe versucht, die URL im Befehl zu ändern, aber httpsohne Erfolg. Was könnte hier das Problem sein?

Antwort1

benutze curl statt lynx -source

WIE:-

Lockehttp://example.com/daemon.php

Antwort2

Konfigurationsdatei (lynx.cfg) für Lynx verwenden:

FORCE_SSL_PROMPT:YES

Dann:

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

verwandte Informationen