@@ -199,6 +199,42 @@ exit $RETVAL
199
199
- 重启服务:` service nginx restart `
200
200
201
201
202
+ ## Nginx 全局变量
203
+
204
+ - $arg_PARAMETER #这个变量包含GET请求中,如果有变量PARAMETER时的值。
205
+ - $args #这个变量等于请求行中(GET请求)的参数,例如foo=123&bar=blahblah;
206
+ - $binary_remote_addr #二进制的客户地址。
207
+ - $body_bytes_sent #响应时送出的body字节数数量。即使连接中断,这个数据也是精确的。
208
+ - $content_length #请求头中的Content-length字段。
209
+ - $content_type #请求头中的Content-Type字段。
210
+ - $cookie_COOKIE #cookie COOKIE变量的值
211
+ - $document_root #当前请求在root指令中指定的值。
212
+ - $document_uri #与$uri相同。
213
+ - $host #请求主机头字段,否则为服务器名称。
214
+ - $hostname #Set to the machine’s hostname as returned by gethostname
215
+ - $http_HEADER
216
+ - $is_args #如果有$args参数,这个变量等于”?”,否则等于”",空值。
217
+ - $http_user_agent #客户端agent信息
218
+ - $http_cookie #客户端cookie信息
219
+ - $limit_rate #这个变量可以限制连接速率。
220
+ - $query_string #与$args相同。
221
+ - $request_body_file #客户端请求主体信息的临时文件名。
222
+ - $request_method #客户端请求的动作,通常为GET或POST。
223
+ - $remote_addr #客户端的IP地址。
224
+ - $remote_port #客户端的端口。
225
+ - $remote_user #已经经过Auth Basic Module验证的用户名。
226
+ - $request_completion #如果请求结束,设置为OK. 当请求未结束或如果该请求不是请求链串的最后一个时,为空(Empty)。
227
+ - $request_method #GET或POST
228
+ - $request_filename #当前请求的文件路径,由root或alias指令与URI请求生成。
229
+ - $request_uri #包含请求参数的原始URI,不包含主机名,如:”/foo/bar.php?arg=baz”。不能修改。
230
+ - $scheme #HTTP方法(如http,https)。
231
+ - $server_protocol #请求使用的协议,通常是HTTP/1.0或HTTP/1.1。
232
+ - $server_addr #服务器地址,在完成一次系统调用后可以确定这个值。
233
+ - $server_name #服务器名称。
234
+ - $server_port #请求到达服务器的端口号。
235
+ - $uri #不带请求参数的当前URI,$uri不包含主机名,如”/foo/bar.html”。该值有可能和$request_uri 不一致。
236
+ - $request_uri是浏览器发过来的值。该值是rewrite后的值。例如做了internal redirects后。
237
+
202
238
## Nginx 配置
203
239
204
240
- Nginx 默认配置文件:` vim /usr/local/nginx/conf/nginx.conf `
@@ -527,4 +563,5 @@ limit_conn slimits 5;
527
563
528
564
- < https://help.aliyun.com/knowledge_detail/5974693.html?spm=5176.788314853.2.18.s4z1ra >
529
565
- < http://www.ydcss.com/archives/466 >
530
-
566
+ - < http://blog.sae.sina.com.cn/archives/2107 >
567
+ - < http://www.nginx.cn/273.html >
0 commit comments