diff options
author | sefidel <contact@sefidel.net> | 2023-12-07 00:03:12 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-12-07 00:03:12 +0900 |
commit | 2cce1c13214e71611cda133e37cc7b4941e98b2a (patch) | |
tree | f6300c48d0c09147cd084f010693708f61882a15 /modules/services/schildichat-web.nix | |
parent | 6bb26431d3fd7696c85b73b3831abf8a89c9be90 (diff) | |
download | infra-2cce1c13214e71611cda133e37cc7b4941e98b2a.tar.gz infra-2cce1c13214e71611cda133e37cc7b4941e98b2a.zip |
feat(modules/{schildichat-web -> cinny-web}): change schildichat-web to cinny-web
Diffstat (limited to 'modules/services/schildichat-web.nix')
-rw-r--r-- | modules/services/schildichat-web.nix | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/modules/services/schildichat-web.nix b/modules/services/schildichat-web.nix deleted file mode 100644 index 8a8ede5..0000000 --- a/modules/services/schildichat-web.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ config, lib, pkgs, ... }: - -with lib; -let - cfg = config.modules.services.schildichat-web; -in -{ - options.modules.services.schildichat-web = { - enable = mkEnableOption "schildichat-web"; - package = mkOption { type = types.package; default = pkgs.schildichat-web; }; - hostName = mkOption { type = types.str; default = config.networking.hostName; }; - matrix = { - baseUrl = mkOption { type = types.str; default = "https://matrix.${config.networking.hostName}"; }; - serverName = mkOption { type = types.str; default = config.networking.hostName; }; - }; - tls.acmeHost = mkOption { type = types.str; default = cfg.hostName; }; - jitsi.domain = mkOption { type = types.str; default = "jitsi.${cfg.hostName}"; }; - }; - - config = mkIf cfg.enable { - services.nginx.virtualHosts.${cfg.hostName} = { - useACMEHost = cfg.tls.acmeHost; - forceSSL = true; - - root = cfg.package.override { - conf = { - default_server_config = { - "m.homeserver" = { - "base_url" = cfg.matrix.baseUrl; - "server_name" = cfg.matrix.serverName; - }; - "m.identity_server" = { - "base_url" = "https://vector.im"; - }; - }; - showLabsSettings = true; - } // optionalAttrs (cfg.jitsi.domain != null) { - jitsi.preferredDomain = cfg.jitsi.domain; - }; - }; - - locations."~ \\.(js|css|woff|woff2?|png|jpe?g|svg)$".extraConfig = '' - add_header Cache-Control "public, max-age=14400, must-revalidate"; - ''; - }; - }; -} |