mirror of
https://github.com/rustfs/rustfs.git
synced 2026-01-17 01:30:33 +00:00
* Checkpoint before follow-up message Co-authored-by: anzhengchao <anzhengchao@gmail.com> * Translate project documentation and comments from Chinese to English Co-authored-by: anzhengchao <anzhengchao@gmail.com> * Fix typo: "unparseable" to "unparsable" in version test comment Co-authored-by: anzhengchao <anzhengchao@gmail.com> * Refactor compression test code with minor syntax improvements Co-authored-by: anzhengchao <anzhengchao@gmail.com> --------- Co-authored-by: Cursor Agent <cursoragent@cursor.com>
22 lines
866 B
Bash
22 lines
866 B
Bash
# RustFS admin username
|
|
RUSTFS_ROOT_USER=rustfsadmin
|
|
# RustFS admin password
|
|
RUSTFS_ROOT_PASSWORD=rustfsadmin
|
|
|
|
# Data volume configuration example path: deploy/data/rustfs.env
|
|
# RustFS data volume storage path, supports multi-volume configuration, vol1 to vol4
|
|
RUSTFS_VOLUMES="./deploy/deploy/vol{1...4}"
|
|
# RustFS service startup parameters, specify listening address and port
|
|
RUSTFS_OPTS="--address :9000"
|
|
# RustFS service listening address and port
|
|
RUSTFS_ADDRESS=":9000"
|
|
# Whether to 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: http://localhost:4317
|
|
RUSTFS_OBS_ENDPOINT=http://localhost:4317
|
|
# TLS certificate directory path: deploy/certs
|
|
RUSTFS_TLS_PATH=/etc/default/tls |