nixos/hosts/hub/apps/peertube.nix

16 lines
318 B
Nix
Raw Normal View History

{
services = {
peertube = {
enable = true;
localDomain = "peertube.thewordnerd.info";
redis.createLocally = true;
database.createLocally = true;
};
services.caddy.virtualHosts."peertube.thewordnerd.info".extraConfig = ''
reverse_proxy http://localhost:9000
'';
};
}