mirror of
https://github.com/rustfs/rustfs.git
synced 2026-01-16 17:20:33 +00:00
- Create English and Chinese README files for the openobserve-otel directory - Document configuration details for both OpenObserve and OTel Collector - Include setup instructions and application integration examples - Add badges for both OpenObserve and OpenTelemetry projects
28 lines
1.1 KiB
Bash
28 lines
1.1 KiB
Bash
# RustFS administrator username
|
|
RUSTFS_ROOT_USER=rustfsadmin
|
|
# RustFS administrator password
|
|
RUSTFS_ROOT_PASSWORD=rustfsadmin
|
|
|
|
# Data volume configuration example path: deploy/data/rustfs.env
|
|
# RustFS data volume storage paths, supports multiple volumes from vol1 to vol4
|
|
RUSTFS_VOLUMES="./deploy/deploy/vol{1...4}"
|
|
# RustFS service startup parameters, specifying listen address and port
|
|
RUSTFS_OPTS="--address 0.0.0.0:9000"
|
|
# RustFS service listen address and port
|
|
RUSTFS_ADDRESS="0.0.0.0:9000"
|
|
# Enable RustFS console functionality
|
|
RUSTFS_CONSOLE_ENABLE=true
|
|
# RustFS console listen address and port
|
|
RUSTFS_CONSOLE_ADDRESS="0.0.0.0:9002"
|
|
# RustFS service endpoint for client access
|
|
RUSTFS_SERVER_ENDPOINT="http://127.0.0.1:9000"
|
|
# RustFS service domain configuration
|
|
RUSTFS_SERVER_DOMAINS=127.0.0.1:9002
|
|
# RustFS license content
|
|
RUSTFS_LICENSE="license content"
|
|
# Observability configuration endpoint: RUSTFS_OBS_ENDPOINT
|
|
RUSTFS_OBS_ENDPOINT=http://localhost:4317
|
|
# TLS certificates directory path: deploy/certs
|
|
RUSTFS_TLS_PATH=/etc/default/tls
|
|
# event notification configuration file path: deploy/config/event.example.toml
|
|
RUSTFS_EVENT_CONFIG=/etc/default/event.toml |