If you run a NGINX reverse proxy hosting multiple services, you may need to see which access was for which service. The Access log can be modified to log the full URL as under
sudo nano /etc/nginx.conf
##
# Logging Settings
##
log_format main '$remote_addr - $remote_user [$time_local] '
'"$request_method $scheme://$host$request_uri $server_protocol" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" $request_time';
access_log /var/log/nginx/access.log main;
Code language: PHP (php)