summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/elchos/log.nix
blob: 34bd2494dbd181b426cfbc200d346d4c0b8c2fff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{ config, lib, pkgs, ... }:

with import <stockholm/lib>;
let
in {
  networking.firewall.allowedTCPPorts = [ 80 443 514 ];
  networking.firewall.allowedUDPPorts = [ 80 443 514 ];
	services.logstash = {
			enable = true;
			enableWeb = true;
      inputConfig = ''
				syslog {
          timezone => "Etc/UTC"
        }
      '';
      filterConfig = ''
        if ( [program] == "proftpd") {
          kv {
            field_split => "	"
          }
        }
      '';
      outputConfig = ''
        #stdout {
        #  codec => rubydebug
        #}
        elasticsearch { }
        '';
	};
	services.elasticsearch = {
			enable = true;
	};
	services.kibana = {
			enable = true;
      port = 9332;
	};
  services.nginx = {
    virtualHosts = {
      "log.nsupdate.info" = {
        enableACME = true;
        forceSSL = true;
        basicAuth = import <secrets/kibana-auth.nix>;
        locations = {
          "/" = {
            proxyPass = "http://localhost:9332";
            extraConfig = ''
              proxy_set_header   Host             $host;
              proxy_set_header   X-Real-IP        $remote_addr;
              proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
            '';
          };
        };
      };
    };
  };
}