Last active
October 6, 2019 20:51
-
-
Save molzieyy/40e41da11cabae0bc11b79b4e11cd0f6 to your computer and use it in GitHub Desktop.
This file contains 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
#!/usr/bin/env bash | |
####################################### | |
# Bash script to install apps on a new system (Ubuntu) | |
# | |
#save with extension .sh | |
#to run bash filename.sh | |
# Written by @slackware from slackware609[at]gmail.com | |
####################################### | |
#add the repository. | |
sudo add-apt-repository ppa:certbot/certbot | |
#update server | |
sudo apt-get update | |
#install Certbot’s Nginx package with | |
sudo apt-get install python-certbot-nginx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment