Caddyfile.example raw

   1  # Example Caddyfile to run Alby Hub behind a Caddy reverse proxy
   2  # Caddy has embedded letsencrypt support and creates HTTPS certificates
   3  # learn more: https://caddyserver.com/docs/getting-started
   4  
   5  # Refer to the Caddy docs for more information:
   6  # https://caddyserver.com/docs/caddyfile
   7  
   8  
   9  :80 {
  10          # optional additional basic authentication
  11          # the password is hashed, see Caddy documentation: https://caddyserver.com/docs/caddyfile/directives/basic_auth
  12          #basicauth {
  13                  # Username "Bob", password "hiccup"
  14  		            # Bob $2a$14$Zkx19XLiW6VYouLHR5NmfOFU0z2GTNmpkT/5qqR7hx4IjWJPDhjvG
  15          #}
  16  
  17          # Alby Hub runs on 8029 by default
  18          reverse_proxy :8029
  19  }
  20