Disable kibana telemetry, disable nginx server_tokens

This commit is contained in:
Patrik Kernstock 2020-08-09 00:10:42 +01:00
parent b721da3a11
commit 3d5860388a
2 changed files with 4 additions and 0 deletions

View File

@ -5,6 +5,8 @@ server {
ssl_certificate /etc/nginx/ssl/kibana.crt;
ssl_certificate_key /etc/nginx/ssl/kibana.key;
server_tokens off;
ssl_session_timeout 1d;
ssl_session_cache shared:SSL:15m;
ssl_session_tickets off;

View File

@ -61,6 +61,8 @@ services:
image: docker.elastic.co/kibana/kibana-oss:7.8.1
environment:
- elasticsearch.hosts=http://elasticsearch:9200
- telemetry.enabled=false
- telemetry.optIn=false
expose: # only expose docker-internally
- 5601
restart: always