How to output variable in nginx log for debugging
You can send nginx variable values via headers. Handy for development. add_header X-uri “$uri”; and you’ll see in your browser’s response headers: X-uri:/index.php I sometimes do this during local development. It’s also handy for telling you if a subsection is getting executed or not. Just sprinkle it inside your clauses to see if they’re getting … Read more