1

Lighttpd を実行している Linux システムで、Let's Encrypt 証明書の証明書更新を自動化するにはどうすればよいですか。Let's Encrypt は Apache 2 および NGINX 用の優れたスクリプトを提供しますが、Raspberry Pi や古いボックスなどの小規模なシステムでははるかに快適な Lighttpd は提供しません。

4

2 に答える 2

3

Danny Tuppeny は、彼のブログ投稿「 Installing Lighttpd, PHP 7 and LetsEncrypt on a Raspberry Pi (Raspbian Jessie Lite)」で実行できる簡単なスクリプトで素晴らしいスタートを切ります。

# Renew cert
# updated for name change [mscalora]
letsencrypt-auto renew

# Rebuild the cert
pushd /etc/letsencrypt/live/<your-domain-here>/
cat privkey.pem cert.pem > combined.pem
popd

# Reload
/etc/init.d/lighttpd force-reload

最新の Let's Encrypt スクリプト パッケージに基づくより一般化されたバージョンは、私の Gist にあります: letsencrypt-update-lighttpd。このスクリプトは、証明書を持つ複数のドメインを処理します。

Danny Tuppeny のブログ投稿には、元のセットアップに関する情報もあります。

于 2016-05-12T22:44:59.610 に答える