alby-hub/scripts/linux-x86_64/Caddyfile.example
Roland 24ad1f2a7f
fix: use a less-used port for the alby hub service so it doesn't conflict with other running apps (#690)
* fix: use a less-used port for the alby hub service so it doesn't conflict with other running apps

* doc: improve alby hub port documentation

Co-authored-by: Michael Bumann <hello@michaelbumann.com>

---------

Co-authored-by: Michael Bumann <hello@michaelbumann.com>
2024-09-22 11:17:16 +07:00

19 lines
704 B
Text

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