Faudrait que je prenne le temps de tester tout ça
-
http://aws.amazon.com/free/truc à faire direct après l'install d'apache2
ça laisse la possibilité d'utiliser indexes sur certains dir
-
http://www.ducea.com/2006/06/26/apache-tips-tricks-disable-directory-indexes/Et oui, une classe ne peut être déclarée qu'une fois, c'est un singleton (une installation d'apache par exemple)
Alors qu'un defined type peut être déclaré x fois, il faut voir ça comme des objets qui peuvent avoir plusieurs instances (comme les vhost)
-
http://www.craigdunn.org/2011/09/puppet-parameterized-classes-vs-definitions/ptin ça marche pas avec nagios_* :/
http://www.mnxsolutions.com/linux/automatically-purge-old-configuration-from-nagios-deployed-by-puppet.html
et ça ça passe seulement avec le path par defaut des nagios_ (/etc/nagios3/.cfg)
-
http://christian.hofstaedtler.name/blog/2008/11/puppet-managing-directories-recursively.htmlintro à l'offloading ssl de nginx
-
http://nginx.com/blog/nginx-ssl/un design pattern role/profile
-
http://fr.slideshare.net/PuppetLabs/roles-talkNouvelle version de sync en auto
-
https://docs.services.mozilla.com/howtos/run-sync-1.5.htmlrgrep et grep -r sont équivalents : on cherche récursivement
grep -R est légerement différent dans le sens où il va suivre les liens symboliques ce qui peut être plus pratique..
-
https://links.infomee.fr/?xsOUWgCompliquées ces api.. je me mets ça de côté pour plus tard car j'ai mis du temps à capter :
http://getpocket.com/developer/docs/authentication
D'abord il faut une consumer_key : voir la doc pour ça, c'est facile (= une api key)
Grâce à cette clé on peut avoir un TOKEN comme ça :
curl -X POST https://getpocket.com/v3/oauth/request --verbose --header 'Content-Type: application/json; charset=UTF8' --header 'X-Accept: application/json' --data '{"consumer_key":"CONSUMER_KEY","redirect_uri":"http://wallabag.org"}'
On utilise ce token pour dire à pocket qu'on autorise l'application
https://getpocket.com/auth/authorize?request_token=TOKEN&redirect_uri=http://wallabag.org
+
curl -X POST https://getpocket.com/v3/oauth/authorize --verbose --header 'Content-Type: application/json; charset=UTF8' --header 'X-Accept: application/json' --data '{"consumer_key":"CONSUMER_KEY","code":"TOKEN"}'
donne un ACCESS_TOKEN
on a enfin l'ACCESS_TOKEN, on peut requeter l'api :
curl -X POST https://getpocket.com/v3/get --verbose --header 'Content-Type: application/json; charset=UTF8' --header 'X-Accept: application/json' --data '{"consumer_key":"CONSUMER_KEY","access_token":"ACCESS_TOKEN"}'
-
https://links.infomee.fr/?C30Glg