summaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2010-06-21 10:16:31 +0000
committerJonathan Kolb <jon@b0g.us>2010-06-21 10:16:31 +0000
commit2a3f501450d6c2b9f48c2d64d3d350241c013125 (patch)
tree5612b72585fe4c279834a5376809e2d681ab65f5 /conf
parent5e086e361f0c9c4a1d43671e68588a334c559c68 (diff)
downloadnginx-2a3f501450d6c2b9f48c2d64d3d350241c013125.tar.gz
Changes with nginx 0.8.42 21 Jun 2010v0.8.42
*) Change: now nginx tests locations given by regular expressions, if request was matched exactly by a location given by a prefix string. The previous behavior has been introduced in 0.7.1. *) Feature: the ngx_http_scgi_module. Thanks to Manlio Perillo. *) Feature: a text answer may be added to a "return" directive.
Diffstat (limited to 'conf')
-rw-r--r--conf/scgi_params15
1 files changed, 15 insertions, 0 deletions
diff --git a/conf/scgi_params b/conf/scgi_params
new file mode 100644
index 000000000..257167eb7
--- /dev/null
+++ b/conf/scgi_params
@@ -0,0 +1,15 @@
+
+scgi_param REQUEST_METHOD $request_method;
+scgi_param REQUEST_URI $request_uri;
+scgi_param QUERY_STRING $query_string;
+scgi_param CONTENT_TYPE $content_type;
+
+scgi_param DOCUMENT_URI $document_uri;
+scgi_param DOCUMENT_ROOT $document_root;
+scgi_param SCGI 1;
+scgi_param SERVER_PROTOCOL $server_protocol;
+
+scgi_param REMOTE_ADDR $remote_addr;
+scgi_param REMOTE_PORT $remote_port;
+scgi_param SERVER_PORT $server_port;
+scgi_param SERVER_NAME $server_name;