diff options
author | Emile <git@emile.space> | 2024-03-09 22:56:01 +0100 |
---|---|---|
committer | Emile <git@emile.space> | 2024-03-09 22:56:01 +0100 |
commit | 55ee036fd7ebed24097c8da1ca8a0b0829264670 (patch) | |
tree | 9c600d75a4f59f8ec253c5caadc1f77b2cecb0da /nix/hosts/corrino/www/stream.emile.space.nix |
big bang
Diffstat (limited to 'nix/hosts/corrino/www/stream.emile.space.nix')
-rw-r--r-- | nix/hosts/corrino/www/stream.emile.space.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/nix/hosts/corrino/www/stream.emile.space.nix b/nix/hosts/corrino/www/stream.emile.space.nix new file mode 100644 index 0000000..7340d4f --- /dev/null +++ b/nix/hosts/corrino/www/stream.emile.space.nix @@ -0,0 +1,24 @@ +{ ... }: + +{ + services.nginx.virtualHosts."stream.emile.space" = { + forceSSL = true; + enableACME = true; + + locations = { + "/" = { + proxyPass = "http://127.0.0.1:8080"; + proxyWebsockets = true; + }; + }; + }; + + services.owncast = { + enable = true; + openFirewall = true; + listen = "0.0.0.0"; + dataDir = "/var/lib/owncast"; + rtmp-port = 1935; + port = 8080; # web interface + }; +} |