惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
C
CERT Recently Published Vulnerability Notes
C
Cybersecurity and Infrastructure Security Agency CISA
P
Proofpoint News Feed
Security Latest
Security Latest
P
Privacy International News Feed
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
AI
AI
Cisco Talos Blog
Cisco Talos Blog
K
Kaspersky official blog
S
Secure Thoughts
PCI Perspectives
PCI Perspectives
Simon Willison's Weblog
Simon Willison's Weblog
D
DataBreaches.Net
GbyAI
GbyAI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
大猫的无限游戏
大猫的无限游戏
T
Tailwind CSS Blog
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
罗磊的独立博客
V
Visual Studio Blog
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
IT之家
IT之家
V
V2EX
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tenable Blog
T
Threat Research - Cisco Blogs
T
Troy Hunt's Blog
V2EX - 技术
V2EX - 技术
S
Security @ Cisco Blogs
Security Archives - TechRepublic
Security Archives - TechRepublic
Project Zero
Project Zero
The GitHub Blog
The GitHub Blog
Recent Commits to openclaw:main
Recent Commits to openclaw:main
L
Lohrmann on Cybersecurity
F
Full Disclosure
H
Help Net Security
博客园 - Franky
Stack Overflow Blog
Stack Overflow Blog
N
Netflix TechBlog - Medium
Engineering at Meta
Engineering at Meta
A
Arctic Wolf
O
OpenAI News
S
Securelist

WishMeLz - 未分类

柯尼卡美能达 bizhub C226 复印机 SMB 扫描到电脑配置教程 港卡,CSL 记录 - WishMeLz Safari 解锁 120hz - WishMeLz CraneMail 优化访问速度之 - Stunnel/HAProxy - WishMeLz Racknerd 2025 黑五闪购套餐汇总 - WishMeLz 香港各大机房/商家测试 IP 整理|DMIT、BWG、LocVPS、SurferCloud、UCloud、51IDC 等 NodeBB 搭建安装笔记 v4.x - WishMeLz 阿里云保备案,不花一分钱 - WishMeLz App Store App历史版本下载 - WishMeLz
minio 最后的绝唱 搭建配置流程 - WishMeLz
Wish · 2026-04-24 · via WishMeLz - 未分类
2025年2月,MinIO社区版以“精简控制台”为由删除11万行代码,彻底移除了Web管理功能。官方声明直白要求:“需要图形界面的用户请迁移至商业产品AiStor”

最后的完美版本

docker pull minio/minio:RELEASE.2025-04-22T22-12-26Z

1、docker-compose.yml 配置:

services:
  minio:
    image: minio/minio:RELEASE.2025-04-22T22-12-26Z
    container_name: minio
    ports:
      - "9000:9000"   
      - "9001:9001"  
    volumes:
      - ./data:/data
      - ./config:/root/.minio
    environment:
      MINIO_ROOT_USER: xxxx #用户名
      MINIO_ROOT_PASSWORD: xxxxxxx #密码
      MINIO_PROMETHEUS_AUTH_TYPE: "public"
    command: server /data --console-address ":9001"
    restart: always

2、域名反代

s3.itsse.cn 反代到9000端口,s3-dash.itsse.cn 反代到 9001端口

client_max_body_size 0;
proxy_request_buffering off;
proxy_buffering off;

3、设置区域与存储桶

2026-04-23T17:29:01.png
这边需要重启一下

2026-04-23T17:30:11.png

4、新建Access Key

2026-04-23T17:30:51.png

5、最终s3配置

地址:https://s3.itsse.cn
存储桶:hkg
区域:cn.hk
Access Key:your_access_key
Secret Key:your_secret__key

6、s3 在线测试

2026-04-23T17:35:29.png


最后编辑时间为: April 24th , 2026 at 01:36 am
本文由 Wish 创作,采用 知识共享署名 4.0 国际许可协议进行许可
可自由转载、引用,但需署名作者且注明文章出处

标签 : 无标签