From c8da57ab8c95527107305a2e5652516e315bb114 Mon Sep 17 00:00:00 2001 From: Timon Engelke Date: Tue, 8 Aug 2023 01:28:06 +0200 Subject: [PATCH] Use nginx internal redirect for song covers --- MafiAStarLite/nginx.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/MafiAStarLite/nginx.conf b/MafiAStarLite/nginx.conf index 306527e..a092a52 100644 --- a/MafiAStarLite/nginx.conf +++ b/MafiAStarLite/nginx.conf @@ -16,4 +16,9 @@ server { include uwsgi_params; uwsgi_pass 127.0.0.1:3008; } + + location /songs_internal { + internal; + alias /app/songs; + } }