file-system/.env.example
向宁 b5df6445e5 refactor: commit all pending file_system changes
- Restructure handlers into file_commands/file_queries/file_handlers
- Add gRPC auth client, JWT middleware, rate limiting, request ID
- Add common utilities: logger, sanitizer, s3_errors
- Add unit tests for config, mediator, auth, request_id, sanitize
- Add proto definitions and generated code
- Remove old web UI pages
- Add .dockerignore and .env.example
2026-05-17 22:20:02 +08:00

10 lines
311 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

RUSTFS_ENDPOINT_URL=http://your-rustfs-endpoint:9000
RUSTFS_ACCESS_KEY_ID=your-access-key
RUSTFS_SECRET_ACCESS_KEY=your-secret-key
RUSTFS_REGION=us-east-1
SERVER_PORT=8080
# 认证方式二选一:设置 GRPC_AUTH_ADDR 走 JWT/gRPC否则走 API Key
AUTH_API_KEY=your-api-key
GRPC_AUTH_ADDR=localhost:50051