about summary refs log tree commit diff
path: root/nixos/tests/web-apps
diff options
context:
space:
mode:
authorIzorkin <izorkin@elven.pw>2023-11-29 10:20:16 +0300
committerIzorkin <izorkin@elven.pw>2024-02-16 16:39:31 +0300
commitcf62e3257f098cdabc9fe967f2844e0f2ddf7bdb (patch)
treed5bde2cfe854a8786559e3bb5f1aa1cbed8a0bfc /nixos/tests/web-apps
parent610303fd14aabf41573f64807ecc09619c2aa1e1 (diff)
nixos/mastodon: redis now uses unix socket by default
Diffstat (limited to 'nixos/tests/web-apps')
-rw-r--r--nixos/tests/web-apps/mastodon/standard.nix6
1 files changed, 0 insertions, 6 deletions
diff --git a/nixos/tests/web-apps/mastodon/standard.nix b/nixos/tests/web-apps/mastodon/standard.nix
index e5eb30fef5976..e14cf592332ec 100644
--- a/nixos/tests/web-apps/mastodon/standard.nix
+++ b/nixos/tests/web-apps/mastodon/standard.nix
@@ -34,12 +34,6 @@ in
         pki.certificateFiles = [ "${cert pkgs}/cert.pem" ];
       };
 
-      services.redis.servers.mastodon = {
-        enable = true;
-        bind = "127.0.0.1";
-        port = 31637;
-      };
-
       # TODO remove once https://github.com/NixOS/nixpkgs/pull/266270 is resolved.
       services.postgresql.package = pkgs.postgresql_14;