Push to see what I still have to remove lol
This commit is contained in:
parent
8c30ba9fea
commit
8d1a992bb2
27 changed files with 25 additions and 337 deletions
11
system/services/server/owncast/nginx/default.nix
Normal file
11
system/services/server/owncast/nginx/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
services.nginx.virtualHosts."live.nixfox.ca" = lib.mkIf config.services.owncast.enable {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://127.0.0.1:8060";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue