diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-06-23 20:50:07 -0500 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-06-23 20:50:07 -0500 |
| commit | f9f970d8364c220c9357f4791fdca2ced72fa804 (patch) | |
| tree | 6d2ef5e2a3e7dfa8f3640b74181a8bb044e74599 /hosts | |
| parent | 9ef174152929b038b01bc2f261b719a57cdad654 (diff) | |
no more mkCaddyConfig, manually specify ports, no more manual /etc/hosts, started using dnsmasq instead. all works!
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/ganymede/config.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hosts/ganymede/config.nix b/hosts/ganymede/config.nix index 47b7f49..8150e14 100644 --- a/hosts/ganymede/config.nix +++ b/hosts/ganymede/config.nix @@ -45,32 +45,39 @@ minecraft = { enable = true; + port = 19132; # standard public = true; }; ngircd = { enable = true; + port = 6667; # standard public = true; }; jta = { enable = true; + port = 8072; publicUrl = "jta.williamsfam.us.com"; }; ganyupload = { enable = true; + port = 8073; publicUrl = "upld.williamsfam.us.com"; }; goaccess = { enable = true; + port = 7890; privateUrl = "stats.ganymede"; }; btopweb = { enable = true; + port = 8017; privateUrl = "btop.ganymede"; }; qbittorrent = { enable = true; + port = 8076; privateUrl = "bittorrent.ganymede"; }; cgit = { |
