mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
194b2686f6
* Migrate to OpenSearch * opensearch security is stupid * forgor --------- Co-authored-by: byte[] <byteslice@airmail.cc>
15 lines
627 B
YAML
15 lines
627 B
YAML
---
|
|
cluster.name: docker-cluster
|
|
|
|
# Bind to all interfaces because we don't know what IP address Docker will assign to us.
|
|
network.host: 0.0.0.0
|
|
|
|
# Setting network.host to a non-loopback address enables the annoying bootstrap checks. "Single-node" mode disables them again.
|
|
discovery.type: single-node
|
|
|
|
# Disable security. We don't need it for dev environment.
|
|
# Also, whoever thought it's a GREAT IDEA TO ENFORCE SECURITY FEATURES
|
|
# BY DEFAULT IN A FREAKING DOCKER CONTAINER should be forced to play
|
|
# the password game every time they would like to create a new account
|
|
# anywhere whatsoever.
|
|
plugins.security.disabled: true
|