logoalt Hacker News

KomoDtoday at 5:41 PM2 repliesview on HN

Ever since I started using Caddy, doing that has been soooo easy.

Download the binary, make a Caddyfile

  myservice.example.com {
   basic_auth {
    admin some_password_hash_here
   }
   reverse_proxy :3000
  }
And then just "./caddy start"

Replies

gizzlontoday at 7:16 PM

Caddy can also proxy to unix sockets !

Natfantoday at 5:58 PM

does this work with multiple caddy servers? ie can you bind multiple caddy servers to port 80/443?

show 2 replies