I have installed caddy with apt-get install
or apt install
on Ubuntu 18.04 LTS server and it works in systemctl.
The installation script is like
sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/cfg/gpg/gpg.155B6D79CA56EA34.key' | sudo apt-key add -
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/cfg/setup/config.deb.txt?distro=debian&version=any-version' | sudo tee -a /etc/apt/sources.list.d/caddy-stable.list
sudo apt update
sudo apt install caddy
How to install additional packages(listed in Download Caddy) in the same method? Or can I specify additional packages when installing caddy via apt
?