1
0
mirror of https://github.com/php/doc-en.git synced 2026-03-23 23:32:18 +01:00

PHP-FPM Extend "access.format" configuration (#3866)

* Clarify remote user

* Describe time format
This commit is contained in:
Kirill Roskolii
2024-11-10 04:02:46 +13:00
committed by GitHub
parent 6507fc94c2
commit 912e734671

View File

@@ -943,19 +943,35 @@
<entry>
<literal>%t</literal>
</entry>
<entry>Server time the request was received</entry>
<entry>
Server time the request was received. It can
accept a <literal>strftime(3)</literal> format:
<literal>%d/%b/%Y:%H:%M:%S %z</literal> (default)
The <literal>strftime(3)</literal> format must be encapsulated in
a <literal>%{&lt;strftime_format&gt;}t</literal> tag, e.g. for a ISO8601
formatted timestring, use:
<literal>%{%Y-%m-%dT%H:%M:%S%z}t</literal>
</entry>
</row>
<row>
<entry>
<literal>%T</literal>
</entry>
<entry>Time the log was written (when the request finished)</entry>
<entry>
Time the log was written (when the request finished). It can accept a
<literal>strftime(3)</literal> format:
<literal>%d/%b/%Y:%H:%M:%S %z</literal> (default).
The <literal>strftime(3)</literal> format must be encapsulated in a
<literal>%{&lt;strftime_format&gt;}t</literal> tag, e.g. for a ISO8601
formatted timestring, use:
<literal>%{%Y-%m-%dT%H:%M:%S%z}t</literal>
</entry>
</row>
<row>
<entry>
<literal>%u</literal>
</entry>
<entry>Remote user</entry>
<entry>Basic access authentication user, if specified in <literal>Authorization</literal> header</entry>
</row>
</tbody>
</tgroup>