Update Caddy.md

master
Harshavardhana 9 years ago
parent 83f9a50137
commit 15b5f4d7a3
  1. 12
      Caddy.md

@ -1,23 +1,27 @@
### Proxy using Caddy. ## Setting up Proxy using Caddy.
Please download [Caddy Server](https://caddyserver.com/download) Please download [Caddy Server](https://caddyserver.com/download)
Create a caddy configuration file as below, change the ip addresses according to your local Create a caddy configuration file as below, change the ip addresses according to your local
minio and DNS configuration. minio and DNS configuration.
```bash
$ ./minio --address localhost:9000 server <your_export_dir>
```
```bash ```bash
your.public.com { your.public.com {
proxy / 10.0.1.3:9000 { proxy / localhost:9000 {
proxy_header Host {host} proxy_header Host {host}
proxy_header X-Real-IP {remote} proxy_header X-Real-IP {remote}
proxy_header X-Forwarded-Proto {scheme} proxy_header X-Forwarded-Proto {scheme}
} }
tls off
} }
``` ```
```bash ```bash
$ ./caddy $ ./caddy
Activating privacy features... done. Activating privacy features... done.
your.public.com your.public.com:443
your.public.com:80
``` ```

Loading…
Cancel
Save