From 83192cc8db7f4a40f4e4fab95fcf57f5be44ce9f Mon Sep 17 00:00:00 2001 From: Rory& Date: Fri, 16 Aug 2024 09:05:18 +0200 Subject: Nginx log request times --- host/Rory-nginx/services/nginx/nginx.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/Rory-nginx/services/nginx/nginx.nix b/host/Rory-nginx/services/nginx/nginx.nix index aee8378..375c3c3 100755 --- a/host/Rory-nginx/services/nginx/nginx.nix +++ b/host/Rory-nginx/services/nginx/nginx.nix @@ -33,7 +33,7 @@ in appendHttpConfig = '' #sendfile on; disable_symlinks off; - log_format combined_vhosts '$remote_addr - $remote_user [$time_local] {host="$host",server_name="$server_name",upstream=$upstream_addr} "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent"'; + log_format combined_vhosts '$remote_addr - $remote_user [$time_local] {host="$host",server_name="$server_name",upstream=$upstream_addr,t=$request_time[u_conn=$upstream_connect_time,u_hdr=$upstream_header_time,u_resp=$upstream_response_time]} "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent"'; access_log /var/log/nginx/access.log combined_vhosts; ''; additionalModules = with pkgs.nginxModules; [ moreheaders ]; -- cgit 1.4.1