server-conf-1-HP/server/azuracast.nix

12 lines
222 B
Nix
Raw Normal View History

{ ... }:
{
services.nginx.virtualHosts."radio.lunamoonlight.xyz" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://10.0.0.9:86";
proxyWebsockets = true;
};
};
}