annotate conf/fastcgi_params @ 330:c60beecc6ab5 NGINX_0_5_35

nginx 0.5.35 *) Change: now the ngx_http_userid_module adds start time microseconds to the cookie field contains a pid value. *) Change: now the uname(2) is used on Linux instead of procfs. Thanks to Ilya Novikov. *) Feature: the "If-Range" request header line support. Thanks to Alexander V. Inyukhin. *) Bugfix: in HTTPS mode requests might fail with the "bad write retry" error; bug appeared in 0.5.13. *) Bugfix: the STARTTLS in SMTP mode did not work. Thanks to Oleg Motienko. *) Bugfix: large_client_header_buffers did not freed before going to keep-alive state. Thanks to Olexander Shtepa. *) Bugfix: the "limit_rate" directive did not allow to use full throughput, even if limit value was very high. *) Bugfix: the $status variable was equal to 0 if a proxied server returned response in HTTP/0.9 version. *) Bugfix: if the "?" character was in a "error_page" directive, then it was escaped in a proxied request; bug appeared in 0.5.32.
author Igor Sysoev <http://sysoev.ru>
date Tue, 08 Jan 2008 00:00:00 +0300
parents 3021f899881a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
86
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
1
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
2 fastcgi_param QUERY_STRING $query_string;
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
3 fastcgi_param REQUEST_METHOD $request_method;
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
4 fastcgi_param CONTENT_TYPE $content_type;
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
5 fastcgi_param CONTENT_LENGTH $content_length;
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
6
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
7 fastcgi_param SCRIPT_NAME $fastcgi_script_name;
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
8 fastcgi_param REQUEST_URI $request_uri;
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
9 fastcgi_param DOCUMENT_URI $document_uri;
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
10 fastcgi_param DOCUMENT_ROOT $document_root;
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
11 fastcgi_param SERVER_PROTOCOL $server_protocol;
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
12
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
13 fastcgi_param GATEWAY_INTERFACE CGI/1.1;
318
3021f899881a nginx 0.5.29
Igor Sysoev <http://sysoev.ru>
parents: 86
diff changeset
14 fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
86
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
15
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
16 fastcgi_param REMOTE_ADDR $remote_addr;
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
17 fastcgi_param REMOTE_PORT $remote_port;
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
18 fastcgi_param SERVER_ADDR $server_addr;
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
19 fastcgi_param SERVER_PORT $server_port;
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
20 fastcgi_param SERVER_NAME $server_name;
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
21
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
22 # PHP only, required if PHP was built with --enable-force-cgi-redirect
962c43960644 nginx 0.1.43
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
23 fastcgi_param REDIRECT_STATUS 200;