diff options
-rw-r--r-- | hosts/by-name/server2/configuration.nix | 7 | ||||
-rw-r--r-- | modules/by-name/ga/gallery/module.nix | 22 | ||||
-rw-r--r-- | modules/by-name/ng/nginx/module.nix | 9 |
3 files changed, 29 insertions, 9 deletions
diff --git a/hosts/by-name/server2/configuration.nix b/hosts/by-name/server2/configuration.nix index 07b78c3..abb29d7 100644 --- a/hosts/by-name/server2/configuration.nix +++ b/hosts/by-name/server2/configuration.nix @@ -4,6 +4,13 @@ ./hardware.nix ]; + sils = { + gallery = { + enable = true; + domain = "gallery.s-schoeffel.de"; + }; + }; + vhack = { back = { enable = true; diff --git a/modules/by-name/ga/gallery/module.nix b/modules/by-name/ga/gallery/module.nix new file mode 100644 index 0000000..a5237e6 --- /dev/null +++ b/modules/by-name/ga/gallery/module.nix @@ -0,0 +1,22 @@ +{ + config, + lib, + ... +}: let + cfg = config.sils.gallery; +in { + options.sils.gallery = { + enable = lib.mkEnableOption "a stateful static gallery site"; + domain = lib.mkOption { + type = lib.types.str; + }; + }; + config = lib.mkIf cfg.enable { + vhack.nginx.enable = true; + services.nginx.virtualHosts."${cfg.domain}" = { + forceSSL = true; + enableACME = true; + root = "/srv/${cfg.domain}"; + }; + }; +} diff --git a/modules/by-name/ng/nginx/module.nix b/modules/by-name/ng/nginx/module.nix index 39919c9..27b0302 100644 --- a/modules/by-name/ng/nginx/module.nix +++ b/modules/by-name/ng/nginx/module.nix @@ -66,15 +66,6 @@ in { services.nginx = { enable = true; virtualHosts = redirects; - - # FIXME(@bpeetz): Migrate to a host. <2024-12-25> - # { - # "gallery.s-schoeffel.de" = { - # forceSSL = true; - # enableACME = true; - # root = "/srv/gallery.s-schoeffel.de"; - # }; - # } }; }; } |