2022-10-12 00:00:00 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Installe LXC et les paramètres réseaux avant de procéder au build.
|
|
|
|
|
|
|
|
# Récupère le dossier du script
|
|
|
|
if [ "${0:0:1}" == "/" ]; then script_dir="$(dirname "$0")"; else script_dir="$(echo $PWD/$(dirname "$0" | cut -d '.' -f2) | sed 's@/$@@')"; fi
|
|
|
|
|
|
|
|
LOG=$(cat "$script_dir/demo_lxc_build.sh" | grep LOG= | cut -d '=' -f2)
|
|
|
|
LOG_BUILD_LXC="$script_dir/$LOG"
|
2022-10-13 05:46:46 +02:00
|
|
|
lxc_name1=$(cat "$script_dir/demo_lxc_build.sh" | grep lxc_name1= | cut -d '=' -f2)
|
|
|
|
lxc_name2=$(cat "$script_dir/demo_lxc_build.sh" | grep lxc_name2= | cut -d '=' -f2)
|
|
|
|
lxdbr_demo_network=$(cat "$script_dir/demo_lxc_build.sh" | grep lxdbr_demo_network= | cut -d '=' -f2)
|
|
|
|
lxc_ip1=$(cat "$script_dir/demo_lxc_build.sh" | grep lxc_ip1= | cut -d '=' -f2)
|
|
|
|
lxc_ip2=$(cat "$script_dir/demo_lxc_build.sh" | grep lxc_ip2= | cut -d '=' -f2)
|
2022-10-12 00:00:00 +02:00
|
|
|
MAIL_ADDR=$(cat "$script_dir/demo_lxc_build.sh" | grep MAIL_ADDR= | cut -d '=' -f2)
|
|
|
|
|
|
|
|
# Check user
|
|
|
|
echo $(whoami) > "$script_dir/setup_user"
|
|
|
|
|
|
|
|
read -p "Indiquer le nom de domaine du serveur de demo: " DOMAIN
|
|
|
|
echo "$DOMAIN" > "$script_dir/domain.ini"
|
|
|
|
|
|
|
|
# Créer le dossier de log
|
|
|
|
sudo mkdir -p $(dirname $LOG_BUILD_LXC)
|
|
|
|
|
2022-10-14 05:02:08 +02:00
|
|
|
echo -e "> Update et install lxc, lxctl et mailutils" | tee "$LOG_BUILD_LXC"
|
2022-10-13 05:46:46 +02:00
|
|
|
sudo apt-get update | tee -a "$LOG_BUILD_LXC" 2>&1
|
|
|
|
sudo apt-get install -y lxc lxctl mailutils certbot | tee -a "$LOG_BUILD_LXC" 2>&1
|
2022-10-12 00:00:00 +02:00
|
|
|
|
2022-10-14 05:02:08 +02:00
|
|
|
echo -e "> Autoriser l'ip forwarding, pour router vers la machine virtuelle." | tee -a "$LOG_BUILD_LXC"
|
2022-10-13 05:46:46 +02:00
|
|
|
echo "net.ipv4.ip_forward=1" | sudo tee /etc/sysctl.d/lxc_demo.conf | tee -a "$LOG_BUILD_LXC" 2>&1
|
|
|
|
sudo sysctl -p /etc/sysctl.d/lxc_demo.conf | tee -a "$LOG_BUILD_LXC" 2>&1
|
2022-10-12 00:00:00 +02:00
|
|
|
|
2022-10-14 05:02:08 +02:00
|
|
|
echo -e "> Ajoute un brige réseau pour la machine virtualisée" | tee -a "$LOG_BUILD_LXC"
|
2022-10-13 05:46:46 +02:00
|
|
|
echo | sudo tee /etc/network/interfaces.d/lxc_demo <<EOF | tee -a "$LOG_BUILD_LXC" 2>&1
|
2022-10-12 00:00:00 +02:00
|
|
|
auto lxc_demo
|
|
|
|
iface lxc_demo inet static
|
2022-10-13 05:46:46 +02:00
|
|
|
address $lxdbr_demo_network.1/24
|
|
|
|
bridge_ports none
|
|
|
|
bridge_fd 0
|
|
|
|
bridge_maxwait 0
|
2022-10-12 00:00:00 +02:00
|
|
|
EOF
|
|
|
|
|
2022-10-14 05:02:08 +02:00
|
|
|
echo -e "> Active le bridge réseau" | tee -a "$LOG_BUILD_LXC"
|
2022-10-13 05:46:46 +02:00
|
|
|
sudo ifup lxc_demo --interfaces=/etc/network/interfaces.d/lxc_demo | tee -a "$LOG_BUILD_LXC" 2>&1
|
2022-10-12 00:00:00 +02:00
|
|
|
|
2022-10-14 05:02:08 +02:00
|
|
|
echo -e "> Mise en place de la connexion ssh vers l'invité." | tee -a "$LOG_BUILD_LXC"
|
2022-10-13 05:46:46 +02:00
|
|
|
if [ -e $HOME/.ssh/$lxc_name1 ]; then
|
|
|
|
rm -f $HOME/.ssh/$lxc_name1 $HOME/.ssh/$lxc_name1.pub
|
|
|
|
ssh-keygen -f $HOME/.ssh/known_hosts -R $lxdbr_demo_network$lxc_ip1
|
|
|
|
ssh-keygen -f $HOME/.ssh/known_hosts -R $lxdbr_demo_network$lxc_ip2
|
2022-10-12 00:00:00 +02:00
|
|
|
fi
|
2022-10-13 05:46:46 +02:00
|
|
|
ssh-keygen -t rsa -f $HOME/.ssh/$lxc_name1 -P '' | tee -a "$LOG_BUILD_LXC" 2>&1
|
2022-10-12 00:00:00 +02:00
|
|
|
|
2022-10-13 05:46:46 +02:00
|
|
|
echo | tee -a $HOME/.ssh/config <<EOF | tee -a "$LOG_BUILD_LXC" 2>&1
|
|
|
|
# ssh $lxc_name1
|
|
|
|
Host $lxc_name1
|
|
|
|
Hostname $lxdbr_demo_network$lxc_ip1
|
2022-10-12 00:00:00 +02:00
|
|
|
User ssh_demo
|
2022-10-13 05:46:46 +02:00
|
|
|
IdentityFile $HOME/.ssh/$lxc_name1
|
|
|
|
Host $lxc_name2
|
|
|
|
Hostname $lxdbr_demo_network$lxc_ip2
|
2022-10-12 00:00:00 +02:00
|
|
|
User ssh_demo
|
2022-10-13 05:46:46 +02:00
|
|
|
IdentityFile $HOME/.ssh/$lxc_name1
|
|
|
|
# End ssh $lxc_name1
|
2022-10-12 00:00:00 +02:00
|
|
|
EOF
|
|
|
|
|
2022-10-14 05:02:08 +02:00
|
|
|
echo -e "> Mise en place du reverse proxy et du load balancing" | tee -a "$LOG_BUILD_LXC"
|
2022-10-13 05:46:46 +02:00
|
|
|
echo | sudo tee /etc/nginx/conf.d/$DOMAIN.conf <<EOF | tee -a "$LOG_BUILD_LXC" 2>&1
|
2022-10-12 00:00:00 +02:00
|
|
|
#upstream $DOMAIN {
|
2022-10-13 05:46:46 +02:00
|
|
|
# server $lxdbr_demo_network$lxc_ip1:443 ;
|
|
|
|
# server $lxdbr_demo_network$lxc_ip2:443 ;
|
2022-10-12 00:00:00 +02:00
|
|
|
#}
|
|
|
|
|
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
listen [::]:80;
|
|
|
|
server_name $DOMAIN;
|
|
|
|
|
|
|
|
location '/.well-known/acme-challenge' {
|
|
|
|
default_type "text/plain";
|
2022-10-13 05:46:46 +02:00
|
|
|
root /tmp/letsencrypt-auto;
|
2022-10-12 00:00:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
access_log /var/log/nginx/$DOMAIN-access.log;
|
|
|
|
error_log /var/log/nginx/$DOMAIN-error.log;
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
|
|
|
sudo service nginx reload
|
|
|
|
|
2022-10-14 05:02:08 +02:00
|
|
|
echo -e "> Création du certificat SSL." | tee -a "$LOG_BUILD_LXC"
|
2022-10-12 00:00:00 +02:00
|
|
|
sudo mkdir -p /etc/letsencrypt
|
|
|
|
|
|
|
|
# Créer le fichier de config
|
2022-10-13 05:46:46 +02:00
|
|
|
echo | sudo tee /etc/letsencrypt/conf.ini <<EOF | tee -a "$LOG_BUILD_LXC" 2>&1
|
2022-10-12 00:00:00 +02:00
|
|
|
#################################
|
|
|
|
# Let's encrypt configuration #
|
|
|
|
#################################
|
|
|
|
|
|
|
|
# Use a 4096 bit RSA key instead of 2048
|
|
|
|
rsa-key-size = 4096
|
|
|
|
|
|
|
|
# Uncomment and update to register with the specified e-mail address
|
|
|
|
email = $MAIL_ADDR
|
|
|
|
|
|
|
|
# Uncomment to use the webroot authenticator. Replace webroot-path with the
|
|
|
|
# path to the public_html / webroot folder being served by your web server.
|
|
|
|
# avec le contenu dans /tmp/letsencrypt-auto
|
|
|
|
authenticator = webroot
|
|
|
|
webroot-path = /tmp/letsencrypt-auto
|
|
|
|
|
|
|
|
# Utiliser l'interface texte
|
|
|
|
text = True
|
|
|
|
# Uncomment to automatically agree to the terms of service of the ACME server
|
|
|
|
agree-tos = true
|
|
|
|
|
|
|
|
# (Serveur de test uniquement : si vous l'utilisez,
|
|
|
|
# votre certificat ne sera pas vraiment valide)
|
|
|
|
# server = https://acme-staging-v02.api.letsencrypt.org/directory
|
|
|
|
EOF
|
|
|
|
|
|
|
|
mkdir -p /tmp/letsencrypt-auto
|
|
|
|
# Créer le certificat
|
|
|
|
sudo certbot certonly --config /etc/letsencrypt/conf.ini -d $DOMAIN --no-eff-email
|
|
|
|
|
|
|
|
# Route l'upstream sur le port 443. Le port 80 servait uniquement à let's encrypt
|
2022-10-13 05:46:46 +02:00
|
|
|
# sudo sed -i "s/server $lxdbr_demo_network$lxc_ip1:80 ;/server $lxdbr_demo_network$lxc_ip1:443 ;/" /etc/nginx/conf.d/$DOMAIN.conf
|
2022-10-12 00:00:00 +02:00
|
|
|
# Décommente les lignes du certificat
|
|
|
|
# sudo sed -i "s/#\tssl_certificate/\tssl_certificate/g" /etc/nginx/conf.d/$DOMAIN.conf
|
|
|
|
# Supprime les commentaires dans la conf nginx
|
|
|
|
|
2022-10-13 05:46:46 +02:00
|
|
|
echo | sudo tee /etc/nginx/conf.d/$DOMAIN.conf <<EOF | tee -a "$LOG_BUILD_LXC" 2>&1
|
2022-10-12 00:00:00 +02:00
|
|
|
#upstream $DOMAIN {
|
2022-10-13 05:46:46 +02:00
|
|
|
# server $lxdbr_demo_network$lxc_ip1:443 ;
|
|
|
|
# server $lxdbr_demo_network$lxc_ip2:443 ;
|
2022-10-12 00:00:00 +02:00
|
|
|
#}
|
|
|
|
|
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
listen [::]:80;
|
|
|
|
server_name $DOMAIN;
|
|
|
|
|
|
|
|
location '/.well-known/acme-challenge' {
|
|
|
|
default_type "text/plain";
|
2022-10-13 05:46:46 +02:00
|
|
|
root /tmp/letsencrypt-auto;
|
2022-10-12 00:00:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
access_log /var/log/nginx/$DOMAIN-access.log;
|
|
|
|
error_log /var/log/nginx/$DOMAIN-error.log;
|
|
|
|
}
|
|
|
|
|
|
|
|
server {
|
|
|
|
listen 443 ssl;
|
|
|
|
listen [::]:443 ssl;
|
|
|
|
server_name $DOMAIN;
|
|
|
|
|
|
|
|
ssl_certificate /etc/letsencrypt/live/$DOMAIN/fullchain.pem;
|
|
|
|
ssl_certificate_key /etc/letsencrypt/live/$DOMAIN/privkey.pem;
|
|
|
|
ssl_session_timeout 5m;
|
|
|
|
ssl_session_cache shared:SSL:50m;
|
|
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
|
|
|
|
ssl_ciphers ALL:!aNULL:!eNULL:!LOW:!EXP:!RC4:!3DES:+HIGH:+MEDIUM;
|
|
|
|
add_header Strict-Transport-Security "max-age=31536000;";
|
|
|
|
|
|
|
|
location / {
|
2022-10-13 05:46:46 +02:00
|
|
|
proxy_pass https://$DOMAIN;
|
|
|
|
proxy_redirect off;
|
2022-10-12 00:00:00 +02:00
|
|
|
proxy_set_header Host \$host;
|
|
|
|
proxy_set_header X-Real-IP \$remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-Proto \$scheme;
|
|
|
|
proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Forwarded-Host \$server_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
access_log /var/log/nginx/$DOMAIN-access.log;
|
|
|
|
error_log /var/log/nginx/$DOMAIN-error.log;
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
|
|
|
sudo service nginx reload
|
|
|
|
|
2022-10-14 05:02:08 +02:00
|
|
|
echo -e "Le serveur est prêt à déployer les conteneurs de demo."
|
|
|
|
echo -e "Exécutez le script demo_lxc_build.sh pour créer les conteneurs et mettre en place la demo."
|
2022-10-12 00:00:00 +02:00
|
|
|
|
|
|
|
# Déploie les conteneurs de demo
|
|
|
|
# "$script_dir/demo_lxc_build.sh"
|