February 2018
Beginner to intermediate
348 pages
9h 40m
English
Context: http, server, and location
Allows you to define the path of the directory that will store the client request body files. An additional option lets you separate those files into a folder hierarchy over as many as three levels.
Syntax: client_body_temp_path path [level1] [level2] [level3]
Default value: client_body_temp
client_body_temp_path /tmp/nginx_rbf; client_body_temp_path temp 2; # Nginx will create 2-digit folders to hold request body files client_body_temp_path temp 1 2 4; # Nginx will create 3 levels of folders (first level: 1 digit, second level: 2 digits, third level: 4 digits)