VEGAS/matrix: add coturn TURN server

This commit is contained in:
Max Headroom 2021-10-16 20:23:43 +02:00
parent 46c66debb2
commit 40e53114ea
4 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ config, tools, ... }:
{
imports = [
../../../../modules/backports/coturn-static-auth-secret-file.nix
];
age.secrets = {
coturn-static-auth = {
file = ../../../../secrets/coturn-static-auth.age;
owner = "turnserver";
group = "root";
mode = "0400";
};
};
services.coturn = {
enable = true;
no-cli = true;
realm = tools.meta.domain;
no-tcp-relay = true;
min-port = 64000;
max-port = 65535;
# TODO: unhardcode
listening-ips = [ "95.216.8.12" ];
lt-cred-mech = true;
use-auth-secret = true;
static-auth-secret-file = config.age.secrets.coturn-static-auth.path;
# TODO: acme
cert = "/etc/coturn/certs/fullchain.pem";
pkey = "/etc/coturn/certs/privkey.pem";
extraConfig = ''
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
'';
};
}

View file

@ -46,6 +46,7 @@ let
cfg = config.services.matrix-synapse; cfg = config.services.matrix-synapse;
in { in {
imports = [ imports = [
./coturn.nix
./bridges/discord.nix ./bridges/discord.nix
./federation.nix ./federation.nix
./web-client.nix ./web-client.nix

Binary file not shown.

View file

@ -4,6 +4,7 @@ let
systemKeys = x: x.ssh.id.publicKey or null; systemKeys = x: x.ssh.id.publicKey or null;
in with hosts; in with hosts;
{ {
"coturn-static-auth.age".publicKeys = max ++ map systemKeys [ VEGAS ];
"discourse-adminpass.age".publicKeys = max ++ map systemKeys [ VEGAS ]; "discourse-adminpass.age".publicKeys = max ++ map systemKeys [ VEGAS ];
"discourse-dbpass.age".publicKeys = max ++ map systemKeys [ VEGAS ]; "discourse-dbpass.age".publicKeys = max ++ map systemKeys [ VEGAS ];
"gitea-db-credentials.age".publicKeys = max ++ map systemKeys [ VEGAS ]; "gitea-db-credentials.age".publicKeys = max ++ map systemKeys [ VEGAS ];