summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/home/airsonic.nix
blob: c6112be26f38b5ebcf91d4d8d1c300897cefee7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ config, ... }:
let
  internal-ip = "192.168.111.11";
  port = 4040;
in
{
  # networking.firewall.allowedTCPPorts = [ 4040 ];
  services.airsonic = {
    enable = true;
    listenAddress = "0.0.0.0";
    inherit port;
  };
  state = [ config.services.airsonic.home ];
  services.nginx.virtualHosts."airsonic" = {
    serverAliases = [
              "airsonic.lan"
      "music"  "music.lan"
      "musik" "musik.lan"
    ];

    locations."/".proxyPass = "http://localhost:${toString port}";
    locations."/".proxyWebsockets = true;
    extraConfig = ''
      if ( $server_addr != "${internal-ip}" ) {
        return 403;
      }
    '';
  };
}