fruitbasket/modules/stream.nix

38 lines
987 B
Nix
Raw Normal View History

2022-09-22 10:36:34 +02:00
{pkgs, lib, config, ...}:
let
2022-09-28 13:49:18 +02:00
website = pkgs.fetchgit {
url = "ssh+git://git@github.com:fsr/fruitbasket.git";
2022-09-22 10:36:34 +02:00
rev = "1b380f3bfd48aae2a17aefbbdd0538f09b7d3bcf";
sha256 = "";
};
in {
services = {
nginx = {
virtualHosts = {
"stream-frontend.quitte.tassilo-tanneberger.de" = {
enableACME = true;
forceSSL = true;
locations."/" = {
2022-09-28 14:20:08 +02:00
root = "${../content/ese-stream/files/website}/";
2022-09-22 10:36:34 +02:00
proxyWebsockets = true;
};
};
"owncast.quitte.tassilo-tanneberger.de" = {
enableACME = true;
forceSSL = true;
locations."/" = let
cfg = config.services.owncast;
in {
2022-09-28 08:06:27 +02:00
proxyPass = "http://${toString cfg.listen}:${toString cfg.port}";
2022-09-22 10:36:34 +02:00
proxyWebsockets = true;
};
};
};
};
owncast = {
enable = true;
2022-09-28 14:26:13 +02:00
port = 13142;
2022-09-22 10:36:34 +02:00
};
};
}