diff options
author | Ben Sima <ben@bsima.me> | 2019-09-17 18:12:24 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-09-17 18:12:24 -0700 |
commit | 830668f1368c0a025fe8d58fce663afc75a7f481 (patch) | |
tree | 26f1724262c9643c66797940bebb8825df84036d /depo/nutin-madaj/default.nix | |
parent | 7c6a690ced8baac64e1e9c667bf581801bd0b679 (diff) |
[depo] disable deployed services
They aren't being used and it's messing up my bsima.me SSL cert.
Diffstat (limited to 'depo/nutin-madaj/default.nix')
-rw-r--r-- | depo/nutin-madaj/default.nix | 57 |
1 files changed, 28 insertions, 29 deletions
diff --git a/depo/nutin-madaj/default.nix b/depo/nutin-madaj/default.nix index 374755e..b2afae8 100644 --- a/depo/nutin-madaj/default.nix +++ b/depo/nutin-madaj/default.nix @@ -37,8 +37,8 @@ nixos { ./znc.nix # our custom modules - ../../mode/ibb.nix - ../../mode/fathom.nix + #../../mode/ibb.nix + #../../mode/fathom.nix # third party nixos-mailserver @@ -55,33 +55,32 @@ nixos { }; # our custom apps - services = { - ibb = { - enable = true; - port = ibbPort; - }; - # TODO: move this nginx config into mode/ibb.nix - nginx.virtualHosts."influencedbybooks.com" = { - forceSSL = true; - enableACME = true; - locations = { - "/" = { - proxyPass = "http://localhost:${ibbPort}"; - }; - }; - }; - - fathom = { - enable = true; - port = fathomPort; - dataDir = "/var/lib/fathom"; - }; - nginx.virtualHosts."stats.simatime.com" = { - locations."/".proxyPass = "http://localhost:${fathomPort}"; - forceSSL = true; - enableACME = true; - }; - }; + #services = { + # ibb = { + # enable = false; + # port = ibbPort; + # }; + # # TODO: move this nginx config into mode/ibb.nix + # nginx.virtualHosts."influencedbybooks.com" = { + # forceSSL = true; + # enableACME = true; + # locations = { + # "/" = { + # proxyPass = "http://localhost:${ibbPort}"; + # }; + # }; + # }; + # fathom = { + # enable = true; + # port = fathomPort; + # dataDir = "/var/lib/fathom"; + # }; + # nginx.virtualHosts."stats.simatime.com" = { + # locations."/".proxyPass = "http://localhost:${fathomPort}"; + # forceSSL = true; + # enableACME = true; + # }; + #}; boot.cleanTmpDir = true; services.openssh.enable = true; |