Remove coturn, never used, Mumble better anyway

This commit is contained in:
Jimbo 2025-03-04 16:50:55 -05:00
parent ba985e92c3
commit 881ba32e58
5 changed files with 5 additions and 80 deletions

View file

@ -1,22 +0,0 @@
{ config, lib, ... }:
{
config = lib.mkIf config.services.coturn.enable {
services.nginx.virtualHosts."turn.jimbosfiles.com" = {
enableACME = true;
forceSSL = true;
listen = [{
addr = "0.0.0.0";
port = 80;
ssl = false;
}];
locations."/".proxyPass = "http://127.0.0.1:1380";
};
security.acme.certs = {
"turn.jimbosfiles.com" = {
group = "turnserver";
postRun = "systemctl restart coturn.service";
};
};
};
}