|
1 | 1 | <?xml version="1.0" encoding="utf-8"?>
|
2 | 2 | <!-- $Revision$ -->
|
3 |
| -<!-- EN-Revision: 78cfb58c46cab7bd81921faeacd1c6830d807dbd Maintainer: takagi Status: ready --> |
| 3 | +<!-- EN-Revision: 0a2cede24d8931daf458935665d0cac08d0926c5 Maintainer: takagi Status: ready --> |
4 | 4 | <!-- Credits: mumumu -->
|
5 | 5 |
|
6 | 6 | <sect1 xml:id="install.fpm.configuration" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
822 | 822 | </row>
|
823 | 823 | </thead>
|
824 | 824 | <tbody>
|
| 825 | + <row> |
| 826 | + <entry> |
| 827 | + <literal>%%</literal> |
| 828 | + </entry> |
| 829 | + <entry><literal>%</literal> 文字</entry> |
| 830 | + </row> |
825 | 831 | <row>
|
826 | 832 | <entry>
|
827 | 833 | <constant>%C</constant>
|
828 | 834 | </entry>
|
829 |
| - <entry>%CPU</entry> |
| 835 | + <entry> |
| 836 | + リクエストが使う %CPU。 |
| 837 | + 以下のフォーマットが使えます: |
| 838 | + <literal>%{user}C</literal> user CPU のみ。 |
| 839 | + <literal>%{system}C</literal> system CPU のみ。 |
| 840 | + <literal>%{total}C</literal> user + system CPU (デフォルト) |
| 841 | + </entry> |
830 | 842 | </row>
|
831 | 843 | <row>
|
832 | 844 | <entry>
|
833 | 845 | <constant>%d</constant>
|
834 | 846 | </entry>
|
835 | 847 | <entry>
|
836 |
| - 処理時間。精度について、以下のフォーマットが許可されています: |
| 848 | + リクエストの処理に掛かる時間。 |
| 849 | + 精度について、以下のフォーマットが許可されています: |
837 | 850 | <literal>%{seconds}d</literal> (デフォルト), <literal>%{milliseconds}d</literal>,
|
838 | 851 | <literal>%{microseconds}d</literal>.
|
839 | 852 | </entry>
|
|
842 | 855 | <entry>
|
843 | 856 | <constant>%e</constant>
|
844 | 857 | </entry>
|
845 |
| - <entry>fastcgi の環境変数</entry> |
| 858 | + <entry> |
| 859 | + 環境変数 (<varname>$_ENV</varname> や <varname>$_SERVER</varname> と同じ)。 |
| 860 | + 変数の名前は、指定する環境変数の名前を中括弧で囲んだものでなければなりません。 |
| 861 | + たとえば、サーバの変数として |
| 862 | + <literal>%{REQUEST_METHOD}e</literal> や |
| 863 | + <literal>%{SERVER_PROTOCOL}e</literal>、 |
| 864 | + HTTP ヘッダの変数として |
| 865 | + <literal>%{HTTP_HOST}e</literal> や |
| 866 | + <literal>%{HTTP_USER_AGENT}e</literal> が挙げられます。 |
| 867 | + </entry> |
846 | 868 | </row>
|
847 | 869 | <row>
|
848 | 870 | <entry>
|
849 | 871 | <constant>%f</constant>
|
850 | 872 | </entry>
|
851 |
| - <entry>script</entry> |
| 873 | + <entry>script のファイル名</entry> |
852 | 874 | </row>
|
853 | 875 | <row>
|
854 | 876 | <entry>
|
855 | 877 | <constant>%l</constant>
|
856 | 878 | </entry>
|
857 |
| - <entry>content length</entry> |
| 879 | + <entry> |
| 880 | + リクエストの <literal>Content-Length</literal> (HTTP POST のみ) |
| 881 | + </entry> |
858 | 882 | </row>
|
859 | 883 | <row>
|
860 | 884 | <entry>
|
861 | 885 | <constant>%m</constant>
|
862 | 886 | </entry>
|
863 |
| - <entry>method</entry> |
| 887 | + <entry>HTTP リクエストの method</entry> |
864 | 888 | </row>
|
865 | 889 | <row>
|
866 | 890 | <entry>
|
867 | 891 | <constant>%M</constant>
|
868 | 892 | </entry>
|
869 |
| - <entry>memory</entry> |
| 893 | + <entry> |
| 894 | + PHP によって確保されたメモリのピーク値。 |
| 895 | + 以下のフォーマットが使えます: |
| 896 | + <literal>%{bytes}M</literal> (デフォルト), |
| 897 | + <literal>%{kilobytes}M</literal>, |
| 898 | + <literal>%{kilo}M</literal>, <literal>%{megabytes}M</literal>, |
| 899 | + <literal>%{mega}M</literal> |
| 900 | + </entry> |
870 | 901 | </row>
|
871 | 902 | <row>
|
872 | 903 | <entry>
|
873 | 904 | <constant>%n</constant>
|
874 | 905 | </entry>
|
875 |
| - <entry>pool name</entry> |
| 906 | + <entry>Pool name</entry> |
876 | 907 | </row>
|
877 | 908 | <row>
|
878 | 909 | <entry>
|
879 |
| - <constant>%o</constant> |
| 910 | + <literal>%{<replaceable>name</replaceable>}o</literal> |
| 911 | + </entry> |
| 912 | + <entry> |
| 913 | + 出力ヘッダ。 |
| 914 | + ヘッダ名は、中括弧で囲んで指定しなければいけません。 |
| 915 | + 例: <literal>%{Content-Type}o</literal>, |
| 916 | + <literal>%{X-Powered-By}o</literal>, |
| 917 | + <literal>%{Transfer-Encoding}o</literal> |
880 | 918 | </entry>
|
881 |
| - <entry>header output</entry> |
882 | 919 | </row>
|
883 | 920 | <row>
|
884 | 921 | <entry>
|
885 | 922 | <constant>%p</constant>
|
886 | 923 | </entry>
|
887 |
| - <entry>PID</entry> |
| 924 | + <entry>リクエストを処理した子プロセスの PID</entry> |
| 925 | + </row> |
| 926 | + <row> |
| 927 | + <entry> |
| 928 | + <literal>%P</literal> |
| 929 | + </entry> |
| 930 | + <entry>リクエストを処理した子の親のPID</entry> |
888 | 931 | </row>
|
889 | 932 | <row>
|
890 | 933 | <entry>
|
|
896 | 939 | <entry>
|
897 | 940 | <constant>%Q</constant>
|
898 | 941 | </entry>
|
899 |
| - <entry>the glue between %q and %r</entry> |
| 942 | + <entry> |
| 943 | + <literal>'?'</literal> 文字、または |
| 944 | + クエリストリングが存在した場合、 |
| 945 | + <literal>%q</literal> と <literal>%r</literal>, |
| 946 | + の間の glue |
| 947 | + </entry> |
900 | 948 | </row>
|
901 | 949 | <row>
|
902 | 950 | <entry>
|
903 | 951 | <constant>%r</constant>
|
904 | 952 | </entry>
|
905 |
| - <entry>request URI</entry> |
| 953 | + <entry> |
| 954 | + クエリストリングを除いたリクエストURI。 |
| 955 | + <literal>%q</literal> と <literal>%Q</literal> |
| 956 | + も参照ください。 |
| 957 | + </entry> |
906 | 958 | </row>
|
907 | 959 | <row>
|
908 | 960 | <entry>
|
|
914 | 966 | <entry>
|
915 | 967 | <constant>%s</constant>
|
916 | 968 | </entry>
|
917 |
| - <entry>status</entry> |
| 969 | + <entry>Status (response code)</entry> |
918 | 970 | </row>
|
919 | 971 | <row>
|
920 | 972 | <entry>
|
921 |
| - <constant>%T</constant> |
| 973 | + <constant>%t</constant> |
922 | 974 | </entry>
|
923 |
| - <entry>time</entry> |
| 975 | + <entry>リクエストを受け取ったサーバ側の時刻</entry> |
924 | 976 | </row>
|
925 | 977 | <row>
|
926 | 978 | <entry>
|
927 |
| - <constant>%t</constant> |
| 979 | + <constant>%T</constant> |
928 | 980 | </entry>
|
929 |
| - <entry>time</entry> |
| 981 | + <entry>ログが書き込まれた時間(リクエストが終了した時間)</entry> |
930 | 982 | </row>
|
931 | 983 | <row>
|
932 | 984 | <entry>
|
933 | 985 | <constant>%u</constant>
|
934 | 986 | </entry>
|
935 |
| - <entry>remote user</entry> |
| 987 | + <entry>Remote user</entry> |
936 | 988 | </row>
|
937 | 989 | </tbody>
|
938 | 990 | </tgroup>
|
|
0 commit comments