Last active
January 14, 2016 00:58
-
-
Save tadyjp/187217c69479db0d3160 to your computer and use it in GitHub Desktop.
Let's encryptの証明書取得スクリプト(Amazon Linuxで動作確認済み)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install libraries | |
sudo yum update | |
sudo yum install git nginx | |
sudo service nginx start | |
# Install letsencrypt script | |
git clone https://github.com/letsencrypt/letsencrypt | |
cd letsencrypt | |
# Make request to Let's encrypt server | |
# (Set your own email and domain) | |
./letsencrypt-auto --debug certonly --standalone --email [email protected] -d stg.form.run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment