^start of line
Group remote_addr(?P<remote_addr>[\w\.]+) +matches at least one character from the set below:
\wany word character
\.the literal . (4610 / 568 / 2E16)
Group remote_user(?P<remote_user>[^ ]*) Negated Character Class[^ ]* *matches any number of characters outside the set below:
the literal (3210 / 408 / 2016)
the literal (3210 / 408 / 2016)
\[the literal [ (9110 / 1338 / 5B16)
Group time_local(?P<time_local>.*) .*any character (except for line terminators), repeated any number of times
\]the literal ] (9310 / 1358 / 5D16)
the literal (3210 / 408 / 2016)
Group ssl_protocol(?P<ssl_protocol>[\w\.]+) +matches at least one character from the set below:
\wany word character
\.the literal . (4610 / 568 / 2E16)
the literal (3210 / 408 / 2016)
Group ssl_ciphers(?P<ssl_ciphers>[\w\._]+) +matches at least one character from the set below:
\wany word character
\.the literal . (4610 / 568 / 2E16)
_the literal _ (9510 / 1378 / 5F16)
Group method(?P<method>[^ ]*) Negated Character Class[^ ]* *matches any number of characters outside the set below:
the literal (3210 / 408 / 2016)
the literal (3210 / 408 / 2016)
Group request(?P<request>[^ ]*) Negated Character Class[^ ]* *matches any number of characters outside the set below:
the literal (3210 / 408 / 2016)
the literal (3210 / 408 / 2016)
Group protocol(?P<protocol>[^ ]*) Negated Character Class[^ ]* *matches any number of characters outside the set below:
the literal (3210 / 408 / 2016)
Group status(?P<status>[\d]+) +matches at least one character from the set below:
\da digit
the literal (3210 / 408 / 2016)
Group body_bytes_sent(?P<body_bytes_sent>[\d]+) +matches at least one character from the set below:
\da digit
g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string