diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-02-12 11:06:43 -0600 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-02-12 11:06:43 -0600 |
| commit | d7a83a7dfbe71bbf5d8f2533a6d9442af9b01283 (patch) | |
| tree | 7902c91fcb2b6a3b33956ad1f03b55d98ec74c6d /hosts | |
| parent | ed84fb332431c6c33891ac1b18a0b184e7d828be (diff) | |
clean up caddy config options for services
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/ganymede/config.nix | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/hosts/ganymede/config.nix b/hosts/ganymede/config.nix index a2bb930..90ca639 100644 --- a/hosts/ganymede/config.nix +++ b/hosts/ganymede/config.nix @@ -50,6 +50,7 @@ portConfig = [ { port = 2222; + listenAddr = "0.0.0.0"; rootLogin = true; } { @@ -59,25 +60,19 @@ ]; }; - # navidrome = { - # enable = true; - # bind_host = "127.0.0.1"; - # caddy.local.enable = true; - # }; + navidrome = { + enable = true; + privateURL = "navidrome.collinux"; + }; forgejo = { enable = true; - bind_host = "127.0.0.1"; - root_url = "https://forgejo.collinux"; - caddy.local.enable = true; + privateURL = "forgejo.collinux"; }; copyparty = { enable = true; - bind_host = "127.0.0.1"; - - root_url = "up.williamsfam.us.com"; - caddy.global.enable = true; + publicURL = "up.williamsfam.us.com"; users.collin = { isAdmin = true; |
