express-api gets /inform post from localhost



在我的express rest api上,我每分钟都会记录一个/notify帖子。

::ffff:127.0.0.1 POST /inform 404 146 - 69.963 ms
::ffff:127.0.0.1 POST /inform 404 146 - 62.149 ms
::ffff:127.0.0.1 POST /inform 404 146 - 20.479 ms

我已经配置了从api.domain.com:80到localhost:8080(这是我的express api(的apache2代理,其他一切都很好。

该系统是Debian10与node,apache2,php等:

node -v
v10.24.0
npm -v
7.6.0
php -v
PHP 7.3.27-1~deb10u1 (cli)
/usr/sbin/apache2 -v
Server version: Apache/2.4.38 (Debian)
Server built:   2020-08-25T20:08:29

这显然与代理有关,但我不知道是什么。Apache2配置:

<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName api.domain.com
ServerAdmin webmaster@api.domain.com
ProxyPreserveHost On
ProxyRequests Off
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
KeepAlive Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
# certs here
</VirtualHost>
</IfModule>

有人能告诉我这是从哪里来的吗?

如果你的网络中有任何Ubiquiti设备,他们可能会试图"打电话回家";Unify控制器应用程序,该应用程序在同一端口上运行。请参阅jrjparks.github.io/unoofficial-unifi-guide/protocols/inform.html

我遇到了同样的问题,并通过在另一个端口上运行我的应用程序解决了这个问题,该端口没有被流氓网络成员ping到。

最新更新