This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# MinIO 测试
MinIO 中文文档地址:https://docs.min.io/cn/
## 启动
windows
```
set MINIO_ACCESS_KEY=12345678
set MINIO_SECRET_KEY=12345678
minio server ./data
linux
···
chmod +x minio
./minio server /data
## Web浏览器
http://localhost:9000 minioadmin minioadmin
创建存储桶并添加Policy设置:*:Read and Write
## 客户端访问
ACCESS_KEY可以通过环境变量MINIO_ACCESS_KEY设置
SECRET_KEY可以通过环境变量MINIO_SECRET_KEY设置
## 分布式访问
使用nginx进行多个地址的负载均衡