通过 nginx 代理 调用 monio
最后更新于:2022-04-02 04:02:31
[TOC]
> [参考](https://docs.min.io/cn/setup-nginx-proxy-with-minio.html)
## 实例
```
server {
listen 80;
server_name example.com;
location / {
proxy_set_header Host $http_host;
proxy_pass http://localhost:9000;
}
}
```
> 为了能够上传大文件,在http上下文中添加client_max_body_size 1000m;,只需按你的需求调整该值。默认值是1m,对大多数场景来说太低了。
';