facebook twitter hatena line email

「Linux/LetsEncrypt導入」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==certbot-autoのインストール== $ git clone https://github.com/certbot/certbot $ cd certbot $ ./certbot-auto ==証明書取得== ./certbot-auto certonly --webr...」)
 
(証明書取得)
行6: 行6:
 
==証明書取得==
 
==証明書取得==
 
  ./certbot-auto certonly --webroot \
 
  ./certbot-auto certonly --webroot \
  -w /var/www/example -d example.com \
+
  -w /var/www/example/public -d example.com \
 
  -m sample@example.com \
 
  -m sample@example.com \
 
  --agree-tos
 
  --agree-tos

2016年7月2日 (土) 07:58時点における版

certbot-autoのインストール

$ git clone https://github.com/certbot/certbot
$ cd certbot
$ ./certbot-auto

証明書取得

./certbot-auto certonly --webroot \
-w /var/www/example/public -d example.com \
-m sample@example.com \
--agree-tos

以下エラーが発生する場合はPython 2.7を入れる必要がある

./certbot-auto: line 558: virtualenv

Python 2.7のインストール

$ sudo yum install centos-release-scl
$ sudo yum install python27 python27-python-tools
$ python -V
Python 2.6.6
# デフォだと2.6なので以下コマンドで一時的に2.7へ
$ sudo scl enable python27 bash
$ python -V
Python 2.7.8