不建议这样使用,建议使用nginx做反向代理,建议使用内网url作为上传文件api的endpoint
1、公钥和私钥配置
根据官网描述(How to secure access to MinIO server with TLS),将TLS的公私钥放到:{ {HOME}}/.minio/certs 里
- 私钥需要命名为:private.key
- 公钥需要命名为:public.crt (如果公钥是以pem格式结尾,可直接改为crt格式)
我们使用docker容器启动,启动用户root。
docker-compose配置文件
version: '3.1'
services:
sentinel-dashboard:
image: sentinel-dashboard:1.8.3
container_name: sentinel-dashboard
volumes:
- ./sentinel/logs/csp:/root/logs/csp/
ports:
- 8088:8088
restart: always
networks:
- sentinel-dashboard
minio:
image: minio/minio:RELEASE.202