标签: nginx logging
我需要从nginx s access.log`中排除特定网址(位置)的记录。
s
我找到了这样的解决方案:
location /status/alive { access_log off; }
但是...我也无法通过网络访问此位置(www.some-site.com/status/alive)。我收到404 nginx响应(但应该得到200)
所以,问题是: