orgmode-to-gemini-blog/update_on_server.sh

30 lines
1.9 KiB
Bash
Raw Normal View History

2024-11-04 23:56:08 +01:00
#!/bin/bash
# script de déploiement pour syncroniser le site web statique et sa capsule gemini
# chemins sur le serveur :
racine_sites_statiques="/poule/encrypted/www/"
# on part du principe que ce dépot est cloné sur le serveur pour simplifier la mise à jour
racine_depot_git="/poule/encrypted/www/orgmode-to-gemini-blog"
# on copie les fichiers générés dans les dépots servis pour chaque nom de domaine
cp $racine_depot_git/templates/style_general.css $racine_sites_statiques/cipherbliss.com/
cp $racine_depot_git/html-websites/cipherbliss_blog/index.html $racine_sites_statiques/cipherbliss.com/
cp $racine_depot_git/html-websites/cipherbliss_blog/lang_fr/ $racine_sites_statiques/cipherbliss.com -r
cp $racine_depot_git/html-websites/cipherbliss_blog/lang_en/ $racine_sites_statiques/cipherbliss.com -r
cp $racine_depot_git/templates/style_general.css $racine_sites_statiques/cipherbliss.com/
cp $racine_depot_git/html-websites/tykayn_blog/index.html $racine_sites_statiques/tykayn.fr/
cp $racine_depot_git/html-websites/tykayn_blog/lang_fr/ $racine_sites_statiques/tykayn.fr -r
cp $racine_depot_git/html-websites/tykayn_blog/lang_en/ $racine_sites_statiques/tykayn.fr -r
cp $racine_depot_git/templates/style_general.css $racine_sites_statiques/cipherbliss.com/
cp $racine_depot_git/html-websites/qzine_blog/index.html $racine_sites_statiques/tykayn.fr/
cp $racine_depot_git/html-websites/qzine_blog/lang_fr/ $racine_sites_statiques/qzine.fr -r
cp $racine_depot_git/html-websites/qzine_blog/lang_en/ $racine_sites_statiques/tykayn.fr -r
cp $racine_depot_git/templates/style_general.css $racine_sites_statiques/cipherbliss.com/
cp $racine_depot_git/html-websites/dragonfeu_blog/index.html $racine_sites_statiques/dragonfeu_blog/
cp $racine_depot_git/html-websites/dragonfeu_blog/lang_fr/ $racine_sites_statiques/dragonfeu_blog -r
cp $racine_depot_git/html-websites/dragonfeu_blog/lang_en/ $racine_sites_statiques/dragonfeu_blog -r