From 11c4ab3a234cf6cb5847395c306268b60c49dbb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 29 Dec 2023 11:16:10 +0100 Subject: [PATCH] fix root path --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index e894736..ab94fb0 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -220,7 +220,7 @@ location ~ ^/static/(webseed|web-videos|redundancy|streaming-playlists)/ { rewrite ^/static/webseed/(.*)$ /web-videos/$1 break; rewrite ^/static/(.*)$ /$1 break; - root __DATA_DIR__storage/; + root __DATA_DIR__/storage/; try_files $uri @api; }