Skip to content

Instantly share code, notes, and snippets.

@koromerzhin
Last active August 11, 2021 12:21
Show Gist options
  • Save koromerzhin/2fe03cc884d1f52d82785edfd8f2a8b5 to your computer and use it in GitHub Desktop.
Save koromerzhin/2fe03cc884d1f52d82785edfd8f2a8b5 to your computer and use it in GitHub Desktop.
Commande
setfacl -R -m u:http:rwX -m u:`whoami`:rwX www
setfacl -dR -m u:http:rwX -m u:`whoami`:rwX www
mount --bin /home/www/lien lien
equivalent de
ln -s /home/www/lien lien
composer config --global --auth github-oauth.github.com <token>
Billet totalement inutile puisqu'on pourrait me répondre "RTFM" à la question "Comment aspirer récursivement un site Web avec wget tout en ré-écrivant les liens en adresses locales", mais je préfère la noter ici pour savoir directement où chercher la prochaine fois que j'en aurais besoin!
wget -rkpE <uri>
-r : récursif
-k : converti les liens en liens locaux
-p : télécharge tous les fichiers nécéssaires à l'affichage de la page en local
-E : modifie les extensions des pages Web en .html
find . -type f -name "*.pacnew"
curl -s -o /dev/null -w "%{http_code}" http://repocheck.traefik.me
find . -type f -exec dos2unix {} \;
docker service update --force container_name
docker inspect container_id
bin/console doctrine:mapping:convert annotation ./src/Mkk/SiteBundle/Entity --from-database
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment