express-api 从本地主机获取 /inform post

express-api gets /inform post from localhost

在我的快速休息中-api我正在记录一个/inform post每分钟或什么的。

::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

我已将 apache2 代理从 api.domain.com:80 配置为 localhost:8080(这是我的 express-api),其他一切正常。

系统为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-Config:

<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 设备,它们可能会尝试“phone 主页”到在同一端口上运行的 Unify 控制器应用程序。见 jrjparks.github.io/unofficial-unifi-guide/protocols/inform.html

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