12 lines
280 B
Nix
12 lines
280 B
Nix
{ lib, config, ... }:
|
|
{
|
|
services.nginx.virtualHosts."cloud.${config.domains.p2}" = lib.mkIf config.services.icecast.enable {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
locations."/" = {
|
|
proxyPass = "http://127.0.0.1:8082";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
}
|