From 15e2b63bfadef886f70cf0211d55ef8362c23c5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Gra=C3=B1a?= Date: Sat, 11 Jul 2020 22:27:05 -0300 Subject: [PATCH 1/3] dejo como backup 24 archivos de los primeros de cada mes --- tools/distribucion_backup.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/distribucion_backup.sh b/tools/distribucion_backup.sh index 78489b7d..9a56859f 100755 --- a/tools/distribucion_backup.sh +++ b/tools/distribucion_backup.sh @@ -6,5 +6,7 @@ cd ${DIR} echo "genero backup" docker run --rm -v distribucion_pgdata:/source:ro busybox tar -czC /source . > data_backup_$(date "+%F_%T").tar.gz -echo "dejo solo los Ășltimos 30 backups" -ls data_backup*.tar.gz | sort | head -n-30 | xargs rm +echo "dejo solo los Ășltimos 30 backups y los ultimos 24 primeros de mes" +PRIMERO_DE_MES='-[0-9][0-9]-01_[0-9][0-9]:' +ls data_backup*.tar.gz | grep -v -- ${PRIMERO_DE_MES} | sort | head -n-30 | xargs rm +ls data_backup*.tar.gz | grep -- ${PRIMERO_DE_MES} | sort | head -n-24 | xargs rm From dce31168badcaf73ceb94e01cee888615b308dce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Gra=C3=B1a?= Date: Wed, 5 Aug 2020 15:39:05 -0300 Subject: [PATCH 2/3] agrego COVERALLS_REPO_TOKEN --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index da15d07d..56097729 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,4 +22,5 @@ script: - DJANGO_SETTINGS_MODULE=distribucion.test_settings coverage run --source=materias,dborrador,encuestas,usuarios --omit=*/migrations/* manage.py test after_success: + - export COVERALLS_REPO_TOKEN=01ukomYk5xS4USQbV3GABMl5mIkblVIcR - coveralls From 0ab7f1ab209bc06548971f18674175ff69e347d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Gra=C3=B1a?= Date: Sun, 15 Nov 2020 17:05:19 -0300 Subject: [PATCH 3/3] mejoro linea de LEEME --- nginx_conf/ssl/LEEME | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx_conf/ssl/LEEME b/nginx_conf/ssl/LEEME index 21a593c5..eaf71fce 100644 --- a/nginx_conf/ssl/LEEME +++ b/nginx_conf/ssl/LEEME @@ -1,5 +1,5 @@ * Cambiar en nginx.conf -1. mi_sitio... por el sitio que aparece en el certificado. +1. mi_host.mi_dominio... por el sitio que aparece en el certificado. 2. ssl_certificate y ssl_certificate_key para que apunten a fullchain.pem y privkey.pem El prefijo /etc/nginx/conf.d/ssl/pems no hay que cambiarlo porque es lo que figura en docker-compose.yaml