Disable Loki and Promtail

This commit is contained in:
kat witch 2021-07-16 23:11:35 +01:00
parent 82feb770d0
commit 57521ab006
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
2 changed files with 3 additions and 2 deletions

View file

@ -1,9 +1,9 @@
{ config, pkgs, ... }:
{
kw.fw.private.tcp.ports = [ 3100 ];
#kw.fw.private.tcp.ports = [ 3100 ];
services.loki = {
enable = true;
enable = false;
configuration = {
auth_enabled = false;
chunk_store_config = { max_look_back_period = "0s"; };

View file

@ -29,6 +29,7 @@ let
in
{
systemd.services.promtail = {
enable = false;
description = "Promtail service for Loki";
wantedBy = [ "multi-user.target" ];
wants = [ "yggdrassil.service" ];