I have a Django/uwsgi/nginx stack running on CentOS. When uploading a large file to django (1GB+), I expect it to create a temp file in /tmp
and I should be able to watch it grow as the upload progresses. However, I don't. ls -lah /tmp
doesn't show any new files being created or changing in size. I even specified in my settings.py
explicitly that FILE_UPLOAD_TEMP_DIR = '/tmp'
but still nothing.
I'd appreciate any help in tracking down where the temp files are stored. I need this to determine whether there are any large uploads in progress.