Fix lms uploads path in nginx

This commit is contained in:
Régis Behmo 2018-01-29 17:20:50 +01:00
parent 81af46fbe9
commit 3c850eb3d1
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ server {
}
location ~ ^/media/(?P<file>.*) {
root /openedx/uploads;
root /openedx/data/lms/uploads;
try_files /$file =404;
expires 31536000s;
}