Difference between revisions of "Nginx.conf"

From wikieduonline
Jump to navigation Jump to search
Line 3: Line 3:
  
  
 +
== Track Application Response time ==
  
 
1) Add to <code>/etc/nginx/nginx.conf</code>
 
1) Add to <code>/etc/nginx/nginx.conf</code>

Revision as of 10:49, 12 December 2019



Track Application Response time

1) Add to /etc/nginx/nginx.conf

log_format timed_combined '$remote_addr - $remote_user [$time_local] '
    '"$request" $status $body_bytes_sent '
    '"$http_referer" "$http_user_agent" '
    '$request_time $upstream_response_time $pipe';

2) Modify access_log directive to use new format:

access_log /var/log/nginx/yourdomain.com.access.log timed_combined;

[1]


See also

  • https://stackoverflow.com/a/39260524
  • Advertising: