add media location to nginx

This commit is contained in:
godd0t 2023-05-10 13:37:29 +02:00
parent 4d34336f2a
commit 2dd3a34f5b
1 changed files with 4 additions and 0 deletions

View File

@ -9,5 +9,9 @@ http {
location /static/ {
alias /usr/src/app/static/;
}
location /media/ {
alias /usr/src/app/media/;
}
}
}