41 lines
2.6 KiB
Bash
41 lines
2.6 KiB
Bash
#!/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/"
|
|
images_inbox="/poule/encrypted/www/tykayn-inbox/blogs-output-pictures"
|
|
images_destination="/poule/encrypted/www/tykayn.fr/wp-content/uploads/i/"
|
|
# on part du principe que ce dépot est cloné sur le serveur pour simplifier la mise à jour
|
|
racine_depot_git="/home/poule/encrypted/stockage-syncable/www/development/html/orgmode-to-gemini-blog"
|
|
|
|
# on copie les fichiers générés dans les dépots servis pour chaque nom de domaine
|
|
|
|
mv "$images_inbox/*" $images_destination
|
|
#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
|
|
|
|
#rsync -a /poule/encrypted/www/tykayn-inbox/cipherbliss_blog/* /poule/encrypted/www/cipherbliss.com/
|
|
#rsync -a /poule/encrypted/www/tykayn-inbox/tykayn_blog/* /poule/encrypted/www/tykayn.fr/
|
|
#rsync -a /poule/encrypted/www/tykayn-inbox/qzine_blog/* /poule/encrypted/www/qzine.fr/
|
|
#
|
|
#chown -R www-data:www-data /poule/encrypted/www/tykayn.fr
|
|
#chown -R www-data:www-data /poule/encrypted/www/cipherbliss.com
|
|
#chown -R www-data:www-data /poule/encrypted/www/qzine.fr
|