さくらVPS wordpressにSSL証明書(Let’s Encrypt)導入.その1

VPS,CentOS6系,Apache,Wordpress,のような比較的古い体制のSSL化メモ.

  1. CentOS6系のデフォルトのPythonは2.6のため,pythonのバージョンを上げる.
 yum -y install centos-release-SCL
 yum -y install python27 phthon27-python-tools
 yum -y  install dialog

# python27を有効化
 scl enable python27 bash
  1. let's Encript本体のリポジトリをcloneしてくる

    git clone https://github.com/letsencrypt/letsencrypt

  2. cloneしたディレクトリへ移動し,足りないものなどがインストール

    cd letsencrypt
    ./letsencrypt-auto --help

  3. 証明書の発行

    certbot certonly --webroot -w ルートディレクトリ -d ドメイン名

次へ https://coneta.jp/article/show/2753