diff --git a/README.md b/README.md index 675b60a1..c9912b73 100644 --- a/README.md +++ b/README.md @@ -136,6 +136,8 @@ To get started with RustFS, follow these steps: 5. **Create a Bucket**: Use the console to create a new bucket for your objects. 6. **Upload Objects**: You can upload files directly through the console or use S3-compatible APIs to interact with your RustFS instance. +**NOTE**: If you want to access RustFS instance with `https`, you can refer to [TLS configuration docs](https://docs.rustfs.com/integration/tls-configured.html). + ## Documentation For detailed documentation, including configuration options, API references, and advanced usage, please visit our [Documentation](https://docs.rustfs.com). diff --git a/README_ZH.md b/README_ZH.md index fb1b3c1c..85530127 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -86,6 +86,8 @@ RustFS 是一个使用 Rust(全球最受欢迎的编程语言之一)构建 4. **创建存储桶**:使用控制台为您的对象创建新的存储桶。 5. **上传对象**:您可以直接通过控制台上传文件,或使用 S3 兼容的 API 与您的 RustFS 实例交互。 +**注意**:如果你想通过 `https` 来访问 RustFS 实例,请参考 [TLS 配置文档](https://docs.rustfs.com/zh/integration/tls-configured.html) + ## 文档 有关详细文档,包括配置选项、API 参考和高级用法,请访问我们的[文档](https://docs.rustfs.com)。 diff --git a/docker-compose.yml b/docker-compose.yml index e4a32378..e3f863c7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -40,6 +40,7 @@ services: - RUSTFS_ACCESS_KEY=rustfsadmin - RUSTFS_SECRET_KEY=rustfsadmin - RUSTFS_LOG_LEVEL=info + - RUSTFS_TLS_PATH=/opt/tls - RUSTFS_OBS_ENDPOINT=http://otel-collector:4317 volumes: - rustfs_data_0:/data/rustfs0 @@ -47,6 +48,7 @@ services: - rustfs_data_2:/data/rustfs2 - rustfs_data_3:/data/rustfs3 - logs_data:/app/logs + - .docker/tls/:/opt/tls # TLS configuration, you should create tls directory and put your tls files in it and then specify the path here networks: - rustfs-network restart: unless-stopped