Last active
August 15, 2021 19:59
-
-
Save TylerSustare/adfc36ad483a7d2155d094a0c086e1d7 to your computer and use it in GitHub Desktop.
Ubuntu Boot Script with Caddy
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
apt install -y debian-keyring debian-archive-keyring apt-transport-https | |
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | sudo tee /etc/apt/trusted.gpg.d/caddy-stable.asc | |
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | sudo tee /etc/apt/sources.list.d/caddy-stable.list | |
apt update | |
apt full-upgrade -y | |
apt install caddy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment