nginx 配置minio
时间: 2023-05-20 10:06:18 浏览: 172
arm64架构的gcc文件
可以使用以下配置将 Nginx 与 Minio 集成:
```
server {
listen 80;
server_name example.com;
location / {
proxy_pass http://127.0.0.1:9000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# Set the following header to enable S3 API compatibility with Minio server
proxy_set_header Authorization "";
}
}
```
这个配置将 Nginx 监听在 80 端口,将所有请求代理到本地的 Minio 服务上。同时,它还设置了一些必要的头信息,以确保 S3 API 兼容性。
阅读全文