Add jackett config and generate colmena hosts from attribute set
This commit is contained in:
parent
682af9276c
commit
64d9dbd4b0
9 changed files with 46 additions and 48 deletions
14
hosts/nixos-coturn/configuration.nix
Normal file
14
hosts/nixos-coturn/configuration.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ ... }:
|
||||
{
|
||||
boot.loader.grub = {
|
||||
enable = true;
|
||||
device = "/dev/vda";
|
||||
};
|
||||
|
||||
networking = {
|
||||
hostName = "coturn";
|
||||
firewall.enable = false;
|
||||
};
|
||||
|
||||
system.stateVersion = "23.05";
|
||||
}
|
45
hosts/nixos-coturn/coturn.nix
Normal file
45
hosts/nixos-coturn/coturn.nix
Normal file
|
@ -0,0 +1,45 @@
|
|||
{ ... }:
|
||||
{
|
||||
services.coturn = {
|
||||
enable = true;
|
||||
|
||||
min-port = 49200;
|
||||
max-port = 49500;
|
||||
use-auth-secret = true;
|
||||
static-auth-secret-file = "/secrets/static-auth-secret.secret";
|
||||
realm = "turn.nekover.se";
|
||||
cert = "/certs/turn.nekover.se/fullchain.pem";
|
||||
pkey = "/certs/turn.nekover.se/key.pem";
|
||||
no-tcp-relay = true;
|
||||
extraConfig = "
|
||||
external-ip=170.133.2.81/10.202.41.118
|
||||
prometheus
|
||||
syslog
|
||||
|
||||
no-tlsv1
|
||||
no-tlsv1_1
|
||||
|
||||
denied-peer-ip=10.0.0.0-10.255.255.255
|
||||
denied-peer-ip=192.168.0.0-192.168.255.255
|
||||
denied-peer-ip=172.16.0.0-172.31.255.255
|
||||
|
||||
no-multicast-peers
|
||||
denied-peer-ip=0.0.0.0-0.255.255.255
|
||||
denied-peer-ip=100.64.0.0-100.127.255.255
|
||||
denied-peer-ip=127.0.0.0-127.255.255.255
|
||||
denied-peer-ip=169.254.0.0-169.254.255.255
|
||||
denied-peer-ip=192.0.0.0-192.0.0.255
|
||||
denied-peer-ip=192.0.2.0-192.0.2.255
|
||||
denied-peer-ip=192.88.99.0-192.88.99.255
|
||||
denied-peer-ip=198.18.0.0-198.19.255.255
|
||||
denied-peer-ip=198.51.100.0-198.51.100.255
|
||||
denied-peer-ip=203.0.113.0-203.0.113.255
|
||||
denied-peer-ip=240.0.0.0-255.255.255.255
|
||||
|
||||
allowed-peer-ip=10.202.41.118
|
||||
|
||||
user-quota=12
|
||||
total-quota=1200
|
||||
";
|
||||
};
|
||||
}
|
8
hosts/nixos-coturn/default.nix
Normal file
8
hosts/nixos-coturn/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./configuration.nix
|
||||
./secrets.nix
|
||||
./coturn.nix
|
||||
];
|
||||
}
|
11
hosts/nixos-coturn/secrets.nix
Normal file
11
hosts/nixos-coturn/secrets.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ ... }:
|
||||
{
|
||||
deployment.keys."static-auth-secret.secret" = {
|
||||
keyCommand = [ "env" "GNUPGHOME=/home/yuri/.passinfra_gnupg" "PASSWORD_STORE_DIR=/home/yuri/pass/infra" "pass" "coturn/static-auth-secret" ];
|
||||
destDir = "/secrets";
|
||||
user = "turnserver";
|
||||
group = "turnserver";
|
||||
permissions = "0640";
|
||||
uploadAt = "pre-activation";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue