2022-09-25 00:31:22 +02:00
|
|
|
{ pkgs, lib, ... }:
|
|
|
|
|
let
|
|
|
|
|
db = "zabbix";
|
2023-01-20 10:36:33 +01:00
|
|
|
db_host = "10.88.0.1";
|
2022-09-25 00:31:22 +02:00
|
|
|
version = "latest";
|
|
|
|
|
port = "8999";
|
|
|
|
|
domain = "zbx.mc-fucker.cool";
|
2023-01-20 10:36:33 +01:00
|
|
|
podman_dns = "--dns=100.100.100.100";
|
|
|
|
|
server_ip = "10.88.1.0";
|
|
|
|
|
web_ip = "10.88.1.1";
|
2022-09-25 00:31:22 +02:00
|
|
|
in
|
|
|
|
|
{
|
|
|
|
|
services.postgresql = {
|
|
|
|
|
ensureDatabases = [ db ];
|
|
|
|
|
ensureUsers = [
|
|
|
|
|
{
|
|
|
|
|
name = db;
|
|
|
|
|
ensurePermissions = {
|
|
|
|
|
"DATABASE ${db}" = "ALL PRIVILEGES";
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
];
|
2022-12-14 13:54:38 +01:00
|
|
|
extraPlugins = [
|
2022-12-14 14:25:18 +01:00
|
|
|
(pkgs.callPackage ../packages/timescaledb/timescaledb.nix {})
|
2022-12-14 13:54:38 +01:00
|
|
|
];
|
2022-09-25 00:31:22 +02:00
|
|
|
settings = {
|
|
|
|
|
shared_preload_libraries = "timescaledb";
|
|
|
|
|
};
|
2023-01-20 10:36:33 +01:00
|
|
|
authentication = "host ${db} ${db} 10.88.0.0/16 md5";
|
2022-09-25 00:31:22 +02:00
|
|
|
};
|
|
|
|
|
|
2023-01-20 10:36:33 +01:00
|
|
|
virtualisation.oci-containers.containers.zabbix-server = {
|
|
|
|
|
image = "zabbix/zabbix-server-pgsql:alpine-6.2-latest";
|
|
|
|
|
environment = {
|
|
|
|
|
DB_SERVER_HOST = db_host;
|
|
|
|
|
POSTGRES_USER = db;
|
2022-09-25 00:31:22 +02:00
|
|
|
};
|
2023-01-20 10:36:33 +01:00
|
|
|
environmentFiles = [ /etc/nixos/keys/zabbix-env ];
|
|
|
|
|
extraOptions = [
|
|
|
|
|
podman_dns
|
|
|
|
|
"--ip=${server_ip}"
|
|
|
|
|
];
|
2022-09-25 00:31:22 +02:00
|
|
|
};
|
|
|
|
|
|
2023-01-20 10:36:33 +01:00
|
|
|
virtualisation.oci-containers.containers.zabbix-web = {
|
|
|
|
|
image = "zabbix/zabbix-web-nginx-pgsql:alpine-6.2-latest";
|
|
|
|
|
environment = {
|
|
|
|
|
DB_SERVER_HOST = db_host;
|
|
|
|
|
POSTGRES_USER = db;
|
|
|
|
|
ZBX_SERVER_HOST = server_ip;
|
|
|
|
|
PHP_TZ = "Europe/Berlin";
|
2022-09-25 00:31:22 +02:00
|
|
|
};
|
2023-01-20 10:36:33 +01:00
|
|
|
environmentFiles = [ /etc/nixos/keys/zabbix-env ];
|
|
|
|
|
extraOptions = [
|
|
|
|
|
podman_dns
|
|
|
|
|
"--ip=${web_ip}"
|
|
|
|
|
];
|
|
|
|
|
ports = [ "${port}:8080" ];
|
2022-09-25 00:31:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
services.nginx.virtualHosts.${domain} = {
|
|
|
|
|
forceSSL = true;
|
|
|
|
|
enableACME = true;
|
|
|
|
|
locations."/" = {
|
|
|
|
|
proxyPass = "http://localhost:${port}";
|
|
|
|
|
};
|
2022-10-30 15:51:48 +01:00
|
|
|
extraConfig = ''
|
|
|
|
|
access_log /var/log/nginx/${domain}_access.log;
|
|
|
|
|
error_log /var/log/nginx/${domain}_error.log;
|
|
|
|
|
'';
|
2022-09-25 00:31:22 +02:00
|
|
|
};
|
|
|
|
|
|
2023-01-20 10:36:33 +01:00
|
|
|
networking.firewall.interfaces.podman0.allowedTCPPorts = [ 5432 ];
|
2022-09-25 00:31:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# vim: set et ts=2 sw=2 ai:
|