Skip to content

Commit b002742

Browse files
authored
Elasticsearch: disable HTTPS (#193)
Instead of disabling the whole security package (151504f) we just need to disable HTTPS for Elasticsearch. I just hit this problem in a fresh environment.
1 parent b4c4a84 commit b002742

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

dockerfiles/docker-compose-search.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ services:
2626
- cluster.info.update.interval=30m
2727
- "ES_JAVA_OPTS=-Xms128m -Xmx128m"
2828
- ELASTIC_PASSWORD=password
29+
# Disable HTTPS on development.
30+
- xpack.security.transport.ssl.enabled=false
2931
ports:
3032
- "9200:9200"
3133
links:

0 commit comments

Comments
 (0)