: This article mainly introduces Nginx: fastcgi_param. if you are interested in the PHP Tutorial, refer to it.
Fastcgi_param SCRIPT_FILENAME $ document_root $ fastcgi_script_name; # path of the script file request fastcgi_param QUERY_STRING $ query_string; # request parameter; such? App = 123fastcgi_param REQUEST_METHOD $ request_method; # Request action (GET, POST) fastcgi_param CONTENT_TYPE $ content_type; # Content-Type field fastcgi_param CONTENT_LENGTH in the request header $ content_length; # Content-length field in the request header. Fastcgi_param SCRIPT_NAME $ fastcgi_script_name; # script name fastcgi_param REQUEST_URI $ request_uri; # The request address does not contain the parameter fastcgi_param DOCUMENT_URI $ document_uri; # the same as $ uri. Fastcgi_param DOCUMENT_ROOT $ document_root; # the root directory of the website. The value fastcgi_param SERVER_PROTOCOL $ server_protocol specified in the root command in server configuration; # the protocol used by the request, usually HTTP/1.0 or HTTP/1.1. GATEWAY_INTERFACE CGI/1.1; # cgi version fastcgi_param SERVER_SOFTWARE nginx/$ nginx_version; # nginx version number, which can be modified or hidden fastcgi_param REMOTE_ADDR $ remote_addr; # client terminal REMOTE_PORT $ remote_port; # client Port fastcgi_param SERVER_ADDR $ server_addr; # server IP address fastcgi_param SERVER_PORT $ server_port; # server port fastcgi_param SERVER_NAME $ server_name; # server name, server_name # fastcgi_param PATH_INFO $ path_info; # customizable variable # PHP only, required if PHP was built with -- enable-force-cgi-redirect # fastcgi_param REDIRECT_STATUS 200; the preceding service environment variables can be printed in php, for example, echo $ _ SERVER ['remote _ ADDR ']
'). AddClass ('pre-numbering '). hide (); $ (this ). addClass ('Has-numbering '). parent (). append ($ numbering); for (I = 1; I <= lines; I ++) {$ numbering. append ($ ('
'). Text (I) ;}; $ numbering. fadeIn (1700) ;}) ;}; script
The above describes Nginx: fastcgi_param details, including some content, and hope to be helpful to friends who are interested in PHP tutorials.