Let’s Encrypt で SSL証明書を自動更新したいのですが、cron設定する際のcertbotのパス指定について
現状
・リンクの通り進めています
sudo yum install certbot-nginx
・cerbot がどこへインストールされたか分からないので調べているのですが、
ls /usr/bin/
certbot -> /usr/bin/certbot-2
certbot-2
予定
・「/etc/cron.d/」の下にhogeファイル配置
環境
・CentOS7
・Nginx
・Let’s Encrypt
・certbot
Q1
・リンク先のcronジョブ例では「&& certbot renew」と記載されていますが、パスを記載する必要はない?
Q2
・certbotはどこにインストールされているのでしょうか?
・「certbot -> /usr/bin/certbot-2」はシンボリックリンク?
Q3
・「/etc/cron.d/hoge」でcertbotのパスを記載するとしたら
0 1 * * * /usr/bin/certbot renew && systemctl restart nginx
あるいは、下記??
0 1 * * * /usr/bin/certbot-2 renew && systemctl restart nginx