Module ngx_http_fastcgi_module | english русский 简体中文 עברית 日本語 türkçe news about download security advisories documentation pgp keys faq links books support donation trac wiki nginx.com | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
This translation may be out of date. Check the English version for recent changes.
The Example Configuration
location / { fastcgi_pass localhost:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /home/www/scripts/php$fastcgi_script_name; fastcgi_param QUERY_STRING $query_string; fastcgi_param REQUEST_METHOD $request_method; fastcgi_param CONTENT_TYPE $content_type; fastcgi_param CONTENT_LENGTH $content_length; }
Directives
Sets
Sets the
Limits the total
Defines a shared memory zone used for caching.
The same zone can be used in several places.
The
Defines conditions under which the response will not be taken from a cache. If at least one value of the string parameters is not empty and is not equal to “0” then the response will not be taken from the cache: fastcgi_cache_bypass $cookie_nocache $arg_nocache$arg_comment; fastcgi_cache_bypass $http_pragma $http_authorization; Can be used along with the fastcgi_no_cache directive.
Defines a key for caching, for example fastcgi_cache_key localhost:9000$request_uri;
This directive appeared in version 1.1.12. When enabled, only one request at a time will be allowed to populate a new cache element identified according to the fastcgi_cache_key directive by passing a request to a FastCGI server. Other requests of the same cache element will either wait for a response to appear in the cache, or the cache lock for this element to be released, up to the time set by the fastcgi_cache_lock_timeout directive.
This directive appeared in version 1.1.12. Sets a timeout for fastcgi_cache_lock.
Sets the
Sets path and other parameters of a cache.
Cache data are stored in files.
Both the key and file name in a cache are a result of
applying the MD5 function to the proxied URL.
The fastcgi_cache_path /data/nginx/cache levels=1:2 keys_zone=one:10m; file names in a cache will look like this: /data/nginx/cache/c/29/b7f54b2df7773722d382f4809d65029c
A cached response is first written to a temporary file, then a file is renamed. Starting from version 0.8.9 temporary files and the cache can be put on different file systems but be aware that in this case a file is copied across two file systems instead of the cheap rename operation. It is thus recommended that for any given location both cache and a directory holding temporary files set by the fastcgi_temp_path directive are put on the same file system.
In addition, all active keys and information about data are stored
in a shared memory zone, whose
The special process “cache manager” monitors the maximum cache size set
by the
A minute after the start the special process “cache loader” is activated
that loads information about previously cached data stored on file system
into a cache zone.
A load is done in iterations.
During one iteration no more than
If an error occurs while working with the FastCGI server it is possible to use a stale cached response. This directives determines in which cases it is permitted. The directive’s parameters match those of the fastcgi_next_upstream directive.
Additionally, the To minimize the number of accesses to FastCGI servers when populating a new cache element, the fastcgi_cache_lock directive can be used.
Sets caching time for different response codes. For example, the following directives fastcgi_cache_valid 200 302 10m; fastcgi_cache_valid 404 1m; set 10 minutes of caching for responses with codes 200 and 302, and 1 minute for responses with code 404.
If only caching fastcgi_cache_valid 5m; then only 200, 301, and 302 responses are cached.
In addition, it can be specified to cache any responses using the
fastcgi_cache_valid 200 302 10m; fastcgi_cache_valid 301 1h; fastcgi_cache_valid any 1m;
Parameters of caching can also be set directly
in the response header.
This has a higher precedence than setting of caching time using the directive.
The “X-Accel-Expires” header field sets caching time of a
response in seconds.
The value 0 disables to cache a response.
If a value starts with the prefix
Defines a timeout for establishing a connection with the FastCGI server. It should be noted that this timeout cannot usually exceed 75 seconds.
By default,
nginx does not pass the header fields “Status” and
“X-Accel-...” from the response of the FastCGI
server to a client.
The
Determines should the connection with the FastCGI server be closed if a client closes a connection without waiting for a response.
Disables processing of certain response header fields from the FastCGI server. The following fields can be ignored: “X-Accel-Redirect”, “X-Accel-Expires”, “X-Accel-Limit-Rate” (1.1.6), “X-Accel-Buffering” (1.1.6), “X-Accel-Charset” (1.1.6), “Expires”, “Cache-Control”, and “Set-Cookie” (0.8.44). If not disabled, processing of these header fields has the following effect:
Sets a file name that will be appended after a URI that ends with
a slash, in the value of the fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /home/www/scripts/php$fastcgi_script_name;
and the “
Determines whether FastCGI server responses with codes greater than or equal to 400 should be passed to a client or be redirected to nginx for processing using the error_page directive.
This directive appeared in version 1.1.4.
By default, a FastCGI server will close a connection right after
sending the response.
When set to the value
When the whole response does not fit into memory buffers
set by the fastcgi_buffer_size and fastcgi_buffers
directives, part of a response can be saved to a temporary file.
This directive sets the maximum Value of zero disables buffering of responses to temporary files.
Specifies in which cases a request should be passed to the next server:
It should be understood that passing a request to the next server is only possible if a client was not sent anything yet. That is, if an error or a timeout occurs in the middle of transferring a response, fixing this is impossible.
Defines conditions under which the response will not be saved to a cache. If at least one value of the string parameters is not empty and is not equal to “0” then the response will not be saved: fastcgi_no_cache $cookie_nocache $arg_nocache$arg_comment; fastcgi_no_cache $http_pragma $http_authorization; Can be used along with the fastcgi_cache_bypass directive.
Sets a The following example shows the minimum required settings for PHP: fastcgi_param SCRIPT_FILENAME /home/www/scripts/php$fastcgi_script_name; fastcgi_param QUERY_STRING $query_string;
The
For scripts that process fastcgi_param REQUEST_METHOD $request_method; fastcgi_param CONTENT_TYPE $content_type; fastcgi_param CONTENT_LENGTH $content_length;
If PHP was built with the fastcgi_param REDIRECT_STATUS 200;
If a directive is specified with fastcgi_param HTTPS $https if_not_empty;
Sets an address of the FastCGI server. An address can be specified as a domain name or an address, and a port, for example, fastcgi_pass localhost:9000; or as a UNIX-domain socket path: fastcgi_pass unix:/tmp/fastcgi.socket;
If a domain name resolves to several addresses, all of them will be used in a round-robin fashion. In addition, an address can be specified as a server group.
Permits to pass otherwise disabled header fields from the FastCGI server to a client.
Defines a timeout for reading a response from the FastCGI server. A timeout is only set between two successive read operations, not for the transmission of the whole response. If a FastCGI server does not transmit anything within this time, a connection is closed.
Sets a timeout for transmitting a request to the FastCGI server. A timeout is only set between two successive write operations, not for the transmission of the whole request. If a FastCGI server does not receive anything within this time, a connection is closed.
Defines a regular expression that captures a value for the
location ~ ^(.+\.php)(.*)$ { fastcgi_split_path_info ^(.+\.php)(.*)$; fastcgi_param SCRIPT_FILENAME /path/to/php$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info;
and the “
Enables saving of files to a disk.
The fastcgi_store /data/www$original_uri;
The modification time of files is set according to the received “Last-Modified” response header field. A response is first written to a temporary file, then a file is renamed. Starting from version 0.8.9 temporary files and the persistent store can be put on different file systems but be aware that in this case a file is copied across two file systems instead of the cheap rename operation. It is thus recommended that for any given location both saved files and a directory holding temporary files set by the fastcgi_temp_path directive are put on the same file system. This directive can be used to create local copies of static unchangeable files, e.g.: location /images/ { root /data/www; open_file_cache_errors off; error_page 404 = /fetch$uri; } location /fetch/ { internal; fastcgi_pass backend:9000; ... fastcgi_store on; fastcgi_store_access user:rw group:rw all:r; fastcgi_temp_path /data/temp; alias /data/www/; }
Sets access permissions for newly created files and directories, e.g.: fastcgi_store_access user:rw group:rw all:r;
If any fastcgi_store_access group:rw all:r;
Limits the
Defines a directory for storing temporary files with data received from FastCGI servers. Up to three-level subdirectory hierarchy can be used underneath the specified directory. For example, in the following configuration fastcgi_temp_path /spool/nginx/fastcgi_temp 1 2; a temporary file might look like this: /spool/nginx/fastcgi_temp/7/45/00000123457
Parameters Passed to a FastCGI Server
HTTP request header fields are passed to the FastCGI server as parameters.
In applications and scripts running as FastCGI servers,
these parameters are usually made available as environment variables.
For example, the “User-Agent” header field is passed as the
Embedded Variables
The
|