NixOS-Config/modules/system/services/server/icecast/nginx/default.nix

15 lines
312 B
Nix
Raw Normal View History

2024-10-19 00:34:06 -04:00
{ config, ... }:
2024-10-09 03:36:08 -04:00
{
services.nginx.virtualHosts."icecast.${config.secrets.jimDomain}" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:265";
proxyWebsockets = true;
extraConfig = ''
add_header Ice-Public "1";
'';
};
};
}