nginx:哪个端口收到请求?

发布于 2024-11-07 19:07:59 字数 165 浏览 0 评论 0原文

出于测试目的,当我发送分布式 http 请求时,我使用 nginx 来侦听多个端口。我可以看到 nginx 收到了请求 - 但我需要知道它的哪个端口实际上收到了它。我在日志中看不到任何标记此问题的选项。

我想一个丑陋的替代方案是安装多个实例,以便将它们的日志分开,但一定有比这更好的方法......?

For testing purposes, I am using nginx to listen on multiple ports when I send distributed http requests. I can see the request be received by nginx - but I need to know which of its ports actually got it. I can't see any options in the logs to flag this.

I guess an ugly alternative is to install multiple instances so their logs are separated, but there must be a better way than this...?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

飞烟轻若梦 2024-11-14 19:07:59

您可以在 nginx 配置中作为变量访问的任何内容,都可以记录,包括非标准 http 标头等。

您要添加的 var 是 $server_port

log_format  mycustomformat  '$host $remote_addr - $remote_user [$time_local] "$request" '
                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" $server_port';
access_log /var/log/nginx/access.log mycustomformat;

Anything you can access as a variable in nginx config, you can log, including non-standard http headers, etc.

The var you want to add is $server_port

log_format  mycustomformat  '$host $remote_addr - $remote_user [$time_local] "$request" '
                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" $server_port';
access_log /var/log/nginx/access.log mycustomformat;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文