diff options
author | makefu <github@syntax-fehler.de> | 2021-12-10 08:48:36 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2021-12-10 08:48:36 +0100 |
commit | 023a9749fced678f6108991170df510a518fdcec (patch) | |
tree | e1fec68ccc2fcf1d72bdf4e23ece0902294c3b70 /makefu/2configs/home/airsonic.nix | |
parent | 2f70dd3a67832579c34f1ea50d77b8b03d69040a (diff) |
ma music: cleanup, use navidrome
Diffstat (limited to 'makefu/2configs/home/airsonic.nix')
-rw-r--r-- | makefu/2configs/home/airsonic.nix | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/makefu/2configs/home/airsonic.nix b/makefu/2configs/home/airsonic.nix deleted file mode 100644 index c6112be26..000000000 --- a/makefu/2configs/home/airsonic.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ 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; - } - ''; - }; -} |