rico1: enable redis
This commit is contained in:
parent
bc3a6c308c
commit
748ba54041
2 changed files with 13 additions and 0 deletions
|
@ -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
|
||||||
|
|
12
hosts/rico1/services/apps/redis.nix
Normal file
12
hosts/rico1/services/apps/redis.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
_: {
|
||||||
|
services.redis.servers = {
|
||||||
|
blocky = {
|
||||||
|
bind = "10.10.10.11";
|
||||||
|
port = 6379;
|
||||||
|
};
|
||||||
|
caddy = {
|
||||||
|
bind = "10.10.10.11";
|
||||||
|
port = 6380;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue