1
0
mirror of https://github.com/astaxie/cookbook.git synced 2025-08-06 22:22:37 +03:00
Files
minio-cookbook/docs/setup-caddy-proxy-with-minio.md
Zachery Hostens c1ee1be820 Update caddy proxy settings (#68)
transparent sets X-Forwarded-Proto along with these three headers.  This header breaks minio giving 'x-amz-content-sha256' header mismatch issues.
2016-08-17 09:27:24 -07:00

1.2 KiB

Setup Caddy proxy with Minio Server Gitter

Caddy is a web server like Apache, nginx, or lighttpd. The purpose of Caddy is to streamline web development, deployment, and hosting workflows so that anyone can host their own web sites without requiring special technical knowledge.

In this recipe we will learn how to set up Caddy proxy with Minio Server.

1. Prerequisites

Install Minio Server from here.

2. Installation

Install Caddy Server from here.

3. Configuration

Create a caddy configuration file as below, change the ip addresses according to your local minio and DNS configuration.


your.public.com 

proxy / localhost:9000 {
    proxy_header X-Forwarded-Proto {scheme}
    proxy_header X-Forwarded-Host {host}
    proxy_header Host {host}
}

4. Recipe Steps

Step 1: Start minio server.


$ ./minio --address localhost:9000 server <your_export_dir>

Step 2: Start caddy server.


$ ./caddy
Activating privacy features... done.
your.public.com:443
your.public.com:80