mirror of
https://github.com/rustfs/rustfs.git
synced 2026-03-17 14:24:08 +00:00
24 lines
864 B
Bash
24 lines
864 B
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 :9000"
|
|
# RustFS service listen address and port
|
|
RUSTFS_ADDRESS=":9000"
|
|
# Enable RustFS console functionality
|
|
RUSTFS_CONSOLE_ENABLE=true
|
|
# RustFS service domain configuration
|
|
RUSTFS_SERVER_DOMAINS=127.0.0.1:9000
|
|
# RustFS license content
|
|
RUSTFS_LICENSE="license content"
|
|
# Observability configuration endpoint: RUSTFS_OBS_ENDPOINT
|
|
RUSTFS_OBS_ENDPOINT=http://localhost:4318
|
|
# TLS certificates directory path: deploy/certs
|
|
RUSTFS_TLS_PATH=/etc/default/tls
|
|
|