rico1: enable redis

This commit is contained in:
Adithya 2024-10-29 00:41:37 +05:30
parent bc3a6c308c
commit 748ba54041
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C
2 changed files with 13 additions and 0 deletions

View file

@ -6,6 +6,7 @@ in
imports = [ imports = [
./blocky.nix ./blocky.nix
./prometheus.nix ./prometheus.nix
./redis.nix
./loki ./loki
../../../shared/prometheus-exporters.nix ../../../shared/prometheus-exporters.nix
../../../shared/promtail.nix ../../../shared/promtail.nix

View file

@ -0,0 +1,12 @@
_: {
services.redis.servers = {
blocky = {
bind = "10.10.10.11";
port = 6379;
};
caddy = {
bind = "10.10.10.11";
port = 6380;
};
};
}