Public repo to distribute scripts and config's
				
			 
			
		 
		
		
		
		
		
		
			Nie możesz wybrać więcej, niż 25 tematów
			Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
		
		
		
	
	
		
		
			
	
    
		
			
				
					
						|          |  | #!/bin/bash
echo "Installing Caddy"
apt install -y debian-keyring debian-archive-keyring apt-transport-https
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | sudo gpg --dearmor -o /usr/share/keyrings/caddy-stable-archive-keyring.gpg
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | sudo tee /etc/apt/sources.list.d/caddy-stable.list
apt-get update
apt-get install caddy -y
echo "Caddy installation completed."
 |