mirror of
https://github.com/rustfs/rustfs.git
synced 2026-01-17 01:30:33 +00:00
* chore(ci): upgrade protoc from 30.2 to 31.1 - Update protoc version in GitHub Actions setup workflow - Use arduino/setup-protoc@v3 to install the latest protoc version - Ensure compatibility with current project requirements - Improve proto file compilation performance and stability This upgrade aligns our development environment with the latest protobuf standards. * modify package version * refactor(deps): centralize crate versions in root Cargo.toml - Move all dependency versions to workspace.dependencies section - Standardize AWS SDK and related crates versions - Update tokio, bytes, and futures crates to latest stable versions - Ensure consistent version use across all workspace members - Implement workspace inheritance for common dependencies This change simplifies dependency management and ensures version consistency across the project. * fix * modify
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:9001"
|
|
# 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:9001
|
|
# 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 |