Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2010-06-01 19:53:11 +0400
committerIgor Sysoev <igor@sysoev.ru>2010-06-01 19:53:11 +0400
commit3a881d30b5876bd0ad74e71a8aa6b5e4ca8b4eac (patch)
treeff7a6f70ec1b2f82114d0e890db015b24a8ca556 /conf
parent1a310e39debe5b6200e5177548360776f57f7869 (diff)
import original ngx_http_uwsgi_module version
Diffstat (limited to 'conf')
-rw-r--r--conf/uwsgi_params15
1 files changed, 15 insertions, 0 deletions
diff --git a/conf/uwsgi_params b/conf/uwsgi_params
new file mode 100644
index 000000000..7cc9c351e
--- /dev/null
+++ b/conf/uwsgi_params
@@ -0,0 +1,15 @@
+
+uwsgi_param QUERY_STRING $query_string;
+uwsgi_param REQUEST_METHOD $request_method;
+uwsgi_param CONTENT_TYPE $content_type;
+uwsgi_param CONTENT_LENGTH $content_length;
+
+uwsgi_param REQUEST_URI $request_uri;
+uwsgi_param PATH_INFO $document_uri;
+uwsgi_param DOCUMENT_ROOT $document_root;
+uwsgi_param SERVER_PROTOCOL $server_protocol;
+
+uwsgi_param REMOTE_ADDR $remote_addr;
+uwsgi_param REMOTE_PORT $remote_port;
+uwsgi_param SERVER_PORT $server_port;
+uwsgi_param SERVER_NAME $server_name;