Skip to content

Commit 7017f94

Browse files
travisamartinweli02
authored andcommitted
NGINX Plus: Fix inconsistent quoting in access log format example (nginx#465)
fix: make quoting consistent in access log format example
1 parent a1df4c5 commit 7017f94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/nginx/admin-guide/monitoring/logging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ http {
6464
log_format upstream_time '$remote_addr - $remote_user [$time_local] '
6565
'"$request" $status $body_bytes_sent '
6666
'"$http_referer" "$http_user_agent"'
67-
'rt=$request_time uct="$upstream_connect_time" uht="$upstream_header_time" urt="$upstream_response_time"';
67+
'rt="$request_time" uct="$upstream_connect_time" uht="$upstream_header_time" urt="$upstream_response_time"';
6868
6969
server {
7070
access_log /spool/logs/nginx-access.log upstream_time;

0 commit comments

Comments
 (0)