opensearch-api 0.1.0

High-performance REST API gateway for OpenSearch with security, observability and multi-tenant support
# Example configuration for OpenSearch API
# -----------------------------------------
# This file contains non-sensitive configuration settings.
# Copy this file to "config.toml" and adjust the values for your environment.
# Sensitive values (like secrets and passwords) should be set via environment variables.

# Network settings
# ADDR: The IP address and port to bind the API server to.
ADDR = "127.0.0.1:8090"

# Log level
# Can be "trace", "debug", "info", "warn", "error"
LOG_LEVEL = "info"

# OpenSearch settings
# OPENSEARCH_URL: The base URL for the OpenSearch cluster.
# For production, it is STRONGLY recommended to set this via an environment variable,
# especially if it contains credentials.
OPENSEARCH_URL = "http://localhost:9200"