Skip to content

Commit

Permalink
logstash docker image: Change default value of ENV SSL_VERIFY to false
Browse files Browse the repository at this point in the history
  • Loading branch information
gunterze committed Dec 7, 2018
1 parent 5cdd6fe commit 6ce3aed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ENV ELASTICSEARCH_HOST=elasticsearch \
SSL_KEY=/etc/certs/key.pem \
SSL_KEY_PASSWORD=secret \
SSL_KEY_PASSWORD_FILE=/tmp/key_password \
SSL_VERIFY=true \
SSL_VERIFY=false \
COLLECTD_PORT=25826 \
COLLECTD_BUFFER_SIZE=1452 \
HL7_CHARSET=ISO-8859-1
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ See [Run all archive services with secured UI and storing System and Audit logs
Below explained environment variables can be set as per one's application to override the default values if need be.
An example of how one can set an env variable in `docker run` command is shown below :

-e SSL_VERIFY=false
-e SSL_VERIFY=true

#### `ELASTICSEARCH_HOST`

Expand Down Expand Up @@ -62,7 +62,7 @@ Default value is `/tmp/key_password`.

#### `SSL_VERIFY`

Verify the identity of the other end of the SSL connection against the CA. Default value is `true`.
Verify the identity of the other end of the SSL connection against the CA. Default value is `false`.

#### `COLLECTD_PORT`

Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ services:
- "8514:8514"
- "6514:6514"
- "25826:25826/udp"
- "9600:9600"
depends_on:
- elasticsearch
volumes:
Expand Down

0 comments on commit 6ce3aed

Please sign in to comment.