Skip to content

Commit

Permalink
Apache and Nginx Let's Encrypt Commands
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreyMSchafer committed Jan 24, 2019
1 parent fc7d6be commit 60d2584
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Django_Blog/snippets/apache-ubuntu-certbot.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
sudo apt-get update
sudo apt-get install software-properties-common
sudo add-apt-repository universe
sudo add-apt-repository ppa:certbot/certbot
sudo apt-get update
sudo apt-get install python-certbot-apache

sudo certbot --apache

sudo certbot renew --dry-run
10 changes: 10 additions & 0 deletions Python/Flask_Blog/snippets/nginx-ubuntu-certbot.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
sudo apt-get update
sudo apt-get install software-properties-common
sudo add-apt-repository universe
sudo add-apt-repository ppa:certbot/certbot
sudo apt-get update
sudo apt-get install python-certbot-nginx

sudo certbot --nginx

sudo certbot renew --dry-run

0 comments on commit 60d2584

Please sign in to comment.