MinIO - 48. MinIO 서버로 캐디 프록시 설정

목록

Setup Caddy proxy with MinIO Server

MinIO 서버로 캐디 프록시 설정

Caddy is a web server like Apache, nginx, or lighttpd.

Caddy는 Apache, nginx 또는 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.

Caddy의 목적은 누구나 특별한 기술 지식 없이도 자신의 웹 사이트를 호스팅할 수 있도록 웹 개발, 배포 및 호스팅 워크플로를 간소화하는 것입니다.

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

이 레시피에서는 MinIO 서버로 Caddy 프록시를 설정하는 방법을 알아봅니다.

1. Prerequisites

1. 전제조건

Install MinIO Server from here.

여기에서 MinIO 서버를 설치하세요.

2. Installation

2. 설치

Install Caddy Server from here.

여기에서 Caddy 서버를 설치하세요.

3. Configuration

3. 구성

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

아래와 같이 캐디 구성 파일을 생성하고 로컬 미니오 및 DNS 구성에 따라 IP 주소를 변경합니다.

your.public.com proxy / localhost:9000 { header_upstream X-Forwarded-Proto {scheme} header_upstream X-Forwarded-Host {host} header_upstream Host {host} health_check /minio/health/ready }

4. Recipe Steps

4. 레시피 단계

Step 1: Start minio server.

1 단계: minio 서버를 시작합니다.

./minio --address localhost:9000 server

Step 2: Start caddy server.

2 단계: 캐디 서버를 시작합니다.

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