From cd816fb427e977927aa34c8e7897d64248d3a660 Mon Sep 17 00:00:00 2001 From: lassulus Date: Mon, 5 Jul 2021 14:47:29 +0200 Subject: l radio: allow world to skip/like tracks --- lass/2configs/radio.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lass/2configs/radio.nix b/lass/2configs/radio.nix index 2c539917..b1e1ed4d 100644 --- a/lass/2configs/radio.nix +++ b/lass/2configs/radio.nix @@ -347,6 +347,19 @@ in { locations."= /recent".extraConfig = '' alias /tmp/played; ''; + locations."= /current".extraConfig = '' + proxy_pass http://localhost:8001; + ''; + locations."= /skip".extraConfig = '' + proxy_pass http://localhost:8001; + ''; + locations."= /good".extraConfig = '' + proxy_pass http://localhost:8001; + ''; + extraConfig = '' + add_header 'Access-Control-Allow-Origin' '*'; + add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS'; + ''; }; virtualHosts."lassul.us".locations."= /the_playlist".extraConfig = let html = pkgs.writeText "index.html" '' -- cgit v1.2.3