Difference between revisions of "User:Woozle/nginx/opt/nginx/conf/scgi params"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
(Created page with "==About== Presumably this file is not actually being used, and is provided only as a sample of how to set up SCGI. ==Contents== <pre> scgi_param REQUEST_METHOD $request_m...")
 
(No difference)

Latest revision as of 15:03, 23 June 2012

About

Presumably this file is not actually being used, and is provided only as a sample of how to set up SCGI.

Contents

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;

Links