1
0

In nginx.conf deny access to /api/{listener,playlist} from outside, scripts are connecting directly to theservice via a unix socket.

This commit is contained in:
Alexander Andreev 2023-10-08 02:04:24 +04:00
parent 1599d502c1
commit 6311b998d4
Signed by: Arav
GPG Key ID: D22A817D95815393

View File

@ -34,6 +34,14 @@ server {
location /live/admin/ {
deny all;
}
location /api/listener {
deny all;
}
location /api/playlist {
deny all;
}
}
server {