12 lines
222 B
Nix
12 lines
222 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
services.nginx.virtualHosts."radio.lunamoonlight.xyz" = {
|
||
|
enableACME = true;
|
||
|
forceSSL = true;
|
||
|
locations."/" = {
|
||
|
proxyPass = "http://10.0.0.9:86";
|
||
|
proxyWebsockets = true;
|
||
|
};
|
||
|
};
|
||
|
}
|