diff options
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/ganymede/config.nix | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/hosts/ganymede/config.nix b/hosts/ganymede/config.nix index 03d9804..6d5e34f 100644 --- a/hosts/ganymede/config.nix +++ b/hosts/ganymede/config.nix @@ -54,26 +54,38 @@ listenAddr = "0.0.0.0"; rootLogin = true; } - # { - # port = 22; - # listenAddr = "0.0.0.0"; - # otp = true; - # } { port = 22; + listenAddr = "0.0.0.0"; + otp = true; + } + { + # also enable ipv6 + port = 22; listenAddr = "[::]"; } ]; }; - goaccess.enable = true; - cgit.enable = true; + goaccess = { + enable = true; + privateUrl = "stats.ganymede"; + }; + + cgit = { + enable = true; + privateUrl = "git.ganymede"; + }; polaris = { enable = true; privateUrl = "music.ganymede"; }; + qbittorrent = { + enable = true; + privateUrl = "bittorrent.ganymede"; + }; copyparty = { enable = true; publicUrl = "up.williamsfam.us.com"; |
