Hello. On a dedicated web server there is such a strange directory var / tmp / nginx / proxy_temp Why do I not need it? And in this folder there are subfolders / 0, / 1, ... / 9 And in each subdirectory there are such directories / 00, / 01, / 02, ... / 99 All these directories are empty. What are they needed for?
1 answer
- And if there is no such proxy_temp_path directive in nginx.conf. That is why there is such a tree. And the command in the console "find. -Mtime -1" displays a list of this tree. That is, every day these directories change. ./var/tmp/nginx/proxy_temp/0/45 ./var/tmp/nginx/proxy_temp/0/46 ./var/tmp/nginx/proxy_temp/0/47 ./var/tmp/nginx/proxy_temp/0 / 48 ./var/tmp/nginx/proxy_temp/0/49 ./var/tmp/nginx/proxy_temp/0/50 ./var/tmp/nginx/proxy_temp/0/51 - tfox
- because this directive was specified when building nginx. nginx -V - nörbörnën
- every day these directories are used because they create files in which data is dumped during buffering. - nörbörnën
|