comparison xml/en/docs/http/ngx_http_core_module.xml @ 771:47ad88faaa3f

$msec and $request_time have become generic variables in 1.3.9.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 22 Nov 2012 12:41:16 +0000
parents d71e56d56ada
children 32b8498cfb40
comparison
equal deleted inserted replaced
770:a879f261f3db 771:47ad88faaa3f
8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd"> 8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
9 9
10 <module name="Module ngx_http_core_module" 10 <module name="Module ngx_http_core_module"
11 link="/en/docs/http/ngx_http_core_module.html" 11 link="/en/docs/http/ngx_http_core_module.html"
12 lang="en" 12 lang="en"
13 rev="11"> 13 rev="12">
14 14
15 <section id="directives" name="Directives"> 15 <section id="directives" name="Directives">
16 16
17 <directive name="aio"> 17 <directive name="aio">
18 <syntax> 18 <syntax>
2787 <tag-desc> 2787 <tag-desc>
2788 setting this variable allows for response rate limiting; 2788 setting this variable allows for response rate limiting;
2789 see <link id="limit_rate"/> 2789 see <link id="limit_rate"/>
2790 </tag-desc> 2790 </tag-desc>
2791 2791
2792 <tag-name id="var_msec"><var>$msec</var></tag-name>
2793 <tag-desc>
2794 current time in seconds with a milliseconds resolution (1.3.9)
2795 </tag-desc>
2796
2792 <tag-name id="var_nginx_version"><var>$nginx_version</var></tag-name> 2797 <tag-name id="var_nginx_version"><var>$nginx_version</var></tag-name>
2793 <tag-desc> 2798 <tag-desc>
2794 nginx version 2799 nginx version
2795 </tag-desc> 2800 </tag-desc>
2796 2801
2881 <tag-desc> 2886 <tag-desc>
2882 request method, usually 2887 request method, usually
2883 “<literal>GET</literal>” or “<literal>POST</literal>” 2888 “<literal>GET</literal>” or “<literal>POST</literal>”
2884 </tag-desc> 2889 </tag-desc>
2885 2890
2891 <tag-name id="var_request_time"><var>$request_time</var></tag-name>
2892 <tag-desc>
2893 request processing time in seconds with a milliseconds resolution (1.3.9);
2894 time elapsed since the first bytes were read from the client
2895 </tag-desc>
2896
2886 <tag-name id="var_request_uri"><var>$request_uri</var></tag-name> 2897 <tag-name id="var_request_uri"><var>$request_uri</var></tag-name>
2887 <tag-desc> 2898 <tag-desc>
2888 full original request URI (with arguments) 2899 full original request URI (with arguments)
2889 </tag-desc> 2900 </tag-desc>
2890 2901