You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
257 B

#!/bin/sh
set -eu
( cd "$(dirname "$0")/../"
domain=bomberman.zapashcanon.fr
sudo cp ./*.conf /etc/apache2/sites-available/
dst=/var/www/${domain}/
sudo mkdir -p $dst
sudo cp -r src/ $dst
sudo service apache2 restart
echo "Installed !"
)