change up on server

This commit is contained in:
Tykayn 2024-11-20 12:11:24 +01:00 committed by tykayn
parent 87d27dc8a2
commit 52173f3843

View File

@ -1,40 +1,21 @@
#!/bin/bash #!/bin/bash
# script de déploiement pour syncroniser le site web statique et sa capsule gemini # script de déploiement pour syncroniser le site web statique et sa capsule gemini
# on part du principe que ce dépot est cloné sur le serveur pour simplifier la mise à jour
# chemins sur le serveur : # chemins sur le serveur :
racine_sites_statiques="/poule/encrypted/www/" racine_sites_statiques="/poule/encrypted/www/"
images_inbox="/poule/encrypted/www/tykayn-inbox/blogs-output-pictures" images_inbox="$racine_sites_statiques/tykayn-inbox/blogs-output-pictures"
images_destination="/poule/encrypted/www/tykayn.fr/wp-content/uploads/i/" images_destination="$racine_sites_statiques/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" 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 # on copie les fichiers générés dans les dépots servis pour chaque nom de domaine
mv "$images_inbox/*" $images_destination mv "$images_inbox/*" $images_destination
#cp $racine_depot_git/templates/style_general.css $racine_sites_statiques/cipherbliss.com/ # rsync -a $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/ rsync -a $racine_depot_git/html-websites/cipherbliss_blog/* $racine_sites_statiques/cipherbliss.com/
#cp $racine_depot_git/html-websites/cipherbliss_blog/lang_fr/ $racine_sites_statiques/cipherbliss.com -r rsync -a $racine_depot_git/html-websites/tykayn_blog/* $racine_sites_statiques/tykayn.fr/
#cp $racine_depot_git/html-websites/cipherbliss_blog/lang_en/ $racine_sites_statiques/cipherbliss.com -r rsync -a $racine_depot_git/html-websites/qzine_blog/* $racine_sites_statiques/qzine.fr/
#
#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/ chown -R www-data:www-data $racine_sites_statiques/tykayn.fr
#rsync -a /poule/encrypted/www/tykayn-inbox/tykayn_blog/* /poule/encrypted/www/tykayn.fr/ chown -R www-data:www-data $racine_sites_statiques/cipherbliss.com
#rsync -a /poule/encrypted/www/tykayn-inbox/qzine_blog/* /poule/encrypted/www/qzine.fr/ chown -R www-data:www-data $racine_sites_statiques/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