2022-10-05 22:46:18 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2022-12-12 20:38:44 +01:00
|
|
|
# This installs the Caddy web server on Linux.
|
2022-10-05 22:46:18 +02:00
|
|
|
# bash <(curl -s https://raw.githubusercontent.com/photoprism/photoprism/develop/scripts/dist/install-caddy.sh)
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
echo "Installing Caddy..."
|
|
|
|
|
|
|
|
sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https
|
2023-02-01 13:01:32 +01:00
|
|
|
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/caddy.gpg
|
2022-10-05 22:46:18 +02:00
|
|
|
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | sudo tee /etc/apt/sources.list.d/caddy-stable.list
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install caddy
|
|
|
|
|
|
|
|
echo "Done."
|