client_max_body_size 4096M; # adjust to taste
 
        # Django media
+       location /media {
+                       alias /srv/media; # your Django project's media files - amend as required
+               # Django media export
+                       location /media/export {
+                        internal;  # protect media files  directory only accessible through Django     
+                                alias /srv/media/export;
+               }
+                # Django media items
+                       location /media/items {
+                        internal;  # protect media files  directory only accessible through Django     
+                                alias /srv/media/items;
+               }                        
+
+       }
+
+# Django media
        location /media {
                 internal;  # protect media files  directory only accessible through Django
                        alias /srv/media; # your Django project's media files - amend as required