diff options
Diffstat (limited to 'snowfall/modules/nixos/services/web')
5 files changed, 0 insertions, 188 deletions
diff --git a/snowfall/modules/nixos/services/web/default.nix b/snowfall/modules/nixos/services/web/default.nix deleted file mode 100644 index 1e1e854..0000000 --- a/snowfall/modules/nixos/services/web/default.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ options, config, lib, namespace, ... }: - -with lib; with lib.${namespace}; let - cfg = config.${namespace}.services.web; - impermanence = config.${namespace}.system.impermanence; -in { - options.${namespace}.services.web = with types; { - enable = mkEnableOption "web"; - }; - - config = mkIf cfg.enable { - environment.persistence.${impermanence.location} = { - directories = [ - "/var/lib/acme" - ]; - }; - - security.acme = { - acceptTerms = true; - defaults.email = "caroline@larimo.re"; - }; - }; -} diff --git a/snowfall/modules/nixos/services/web/images/default.nix b/snowfall/modules/nixos/services/web/images/default.nix deleted file mode 100644 index b1c44e6..0000000 --- a/snowfall/modules/nixos/services/web/images/default.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ options, config, lib, namespace, ... }: - -with lib; with lib.${namespace}; let - cfg = config.${namespace}.services.web.images; - impermanence = config.${namespace}.system.impermanence; -in { - options.${namespace}.services.web.images = with types; { - enable = mkEnableOption "image webserver"; - }; - - config = mkIf cfg.enable { - cxl.services.web.enable = true; - - environment.persistence.${impermanence.location} = { - directories = [ - "/srv/web/images" - ]; - }; - - networking.firewall.allowedTCPPorts = [ 80 443 ]; - - services.nginx = { - enable = true; - virtualHosts = { - "i.cxl.sh" = { - addSSL = true; - enableACME = true; - - root = "/srv/web/images"; - }; - }; - }; - }; -} diff --git a/snowfall/modules/nixos/services/web/landing/default.nix b/snowfall/modules/nixos/services/web/landing/default.nix deleted file mode 100644 index fe9e92b..0000000 --- a/snowfall/modules/nixos/services/web/landing/default.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ options, config, lib, namespace, ... }: - -with lib; with lib.${namespace}; let - cfg = config.${namespace}.services.web.landing; - impermanence = config.${namespace}.system.impermanence; -in { - options.${namespace}.services.web.landing = with types; { - enable = mkEnableOption "cxl.sh landing page webserver"; - }; - - config = mkIf cfg.enable { - cxl.services.web.enable = true; - - environment.persistence.${impermanence.location} = { - directories = [ - "/srv/web/landing" - ]; - }; - - networking.firewall.allowedTCPPorts = [ 80 443 ]; - - services.nginx = { - enable = true; - virtualHosts = { - "cxl.sh" = { - addSSL = true; - enableACME = true; - - root = "/srv/web/landing"; - }; - }; - }; - }; -} diff --git a/snowfall/modules/nixos/services/web/personal/default.nix b/snowfall/modules/nixos/services/web/personal/default.nix deleted file mode 100644 index daf94c1..0000000 --- a/snowfall/modules/nixos/services/web/personal/default.nix +++ /dev/null @@ -1,63 +0,0 @@ -{ options, config, lib, pkgs, namespace, ... }: - -with lib; with lib.${namespace}; let - cfg = config.${namespace}.services.web.personal; - impermanence = config.${namespace}.system.impermanence; - - package = (pkgs.buildGoModule rec { - pname = "site"; - version = "6612d84c63a7bbc2a5b70607f2ec32ea070c4659"; - - src = pkgs.fetchFromGitHub { - owner = "CartConnoisseur"; - repo = "site"; - rev = "${version}"; - hash = "sha256-n54+LdtMyjoLfaFqd7tcDQqBiYCdUW/Rs67Vc4QwEJ0="; - }; - - # kinda a hack, but whatever - postBuild = '' - mkdir -p $out/share/site - cp -r $src/* $out/share/site/ - ''; - - vendorHash = "sha256-2/4Wv7nsaT0wnUzkRgHKpSswigDj9nOvlmYXK29rvLU="; - }); -in { - options.${namespace}.services.personal.images = with types; { - enable = mkEnableOption "personal site webserver"; - }; - - config = mkIf cfg.enable { - cxl.services.web.enable = true; - - networking.firewall.allowedTCPPorts = [ 80 443 ]; - - services.nginx = { - enable = true; - virtualHosts = { - "caroline.larimo.re" = { - # serverAliases = [ "cxl.sh" ]; - - addSSL = true; - enableACME = true; - - locations."/" = { - recommendedProxySettings = true; - proxyPass = "http://127.0.0.1:8080/"; - }; - }; - }; - }; - - systemd.services."cxl.web.personal" = { - enable = true; - wantedBy = [ "multi-user.target" ]; - - serviceConfig = { - WorkingDirectory = "${package}/share/site"; - ExecStart = "${package}/bin/site"; - }; - }; - }; -} diff --git a/snowfall/modules/nixos/services/web/stargazers/default.nix b/snowfall/modules/nixos/services/web/stargazers/default.nix deleted file mode 100644 index 3e9b46e..0000000 --- a/snowfall/modules/nixos/services/web/stargazers/default.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ options, config, lib, namespace, ... }: - -with lib; with lib.${namespace}; let - cfg = config.${namespace}.services.web.stargazers; - impermanence = config.${namespace}.system.impermanence; -in { - options.${namespace}.services.web.stargazers = with types; { - enable = mkEnableOption "stargazers webserver"; - }; - - config = mkIf cfg.enable { - cxl.services.web.enable = true; - - environment.persistence.${impermanence.location} = { - directories = [ - "/srv/web/stargazers" - ]; - }; - - networking.firewall.allowedTCPPorts = [ 80 443 ]; - - services.nginx = { - enable = true; - virtualHosts = { - "stargazers.xn--6frz82g" = { - addSSL = true; - enableACME = true; - - root = "/srv/web/stargazers"; - }; - }; - }; - }; -} |