Update to 2020-05-27 13:00

master
Daniel Berteaud 4 years ago
parent c643fd3a45
commit f0481cc8a3
  1. 1
      roles/elasticsearch/templates/post-backup.j2
  2. 5
      roles/graylog/defaults/main.yml
  3. 4
      roles/graylog/templates/server.conf.j2

@ -6,3 +6,4 @@ rm -rf {{ es_backup_dir }}/*
# Can't delete elasticsearch dumps, set es_backup_dir to a non empty path
{% endif %}
umount /home/lbkp/es
fstrim -a -v

@ -61,3 +61,8 @@ graylog_mongodb_uri:
# If you want to obtain a cert with dehydrated
# it'll be deployed as {{ graylog_root_dir }}/ssl/cert.pem and {{ graylog_root_dir }}/ssl/key.pem
# graylog_letsencrypt_cert: graylog.domain.tls
# If set, will populate enabled_tls_protocols
# on el7, TLSv1.3 seems to break filebeat connections, so, just enable TLSv1.2
graylog_tls_versions:
- TLSv1.2

@ -43,3 +43,7 @@ allow_leading_wildcard_searches = true
{% if 'dnsresolver' in graylog_plugins_to_install %}
dns_resolver_enabled = true
{% endif %}
{% if graylog_tls_versions | length > 0 %}
enabled_tls_protocols = {{ graylog_tls_versions | join(',') }}
{% endif %}

Loading…
Cancel
Save