nginxinc / nginx-amplify-agent

NGINX Amplify Agent
BSD 2-Clause "Simplified" License
23 stars 9 forks source link

404 errors have risen since the service is running #44

Open aldos84 opened 6 years ago

aldos84 commented 6 years ago

Hi,

today I've installed the Nginx Amplify Agent and it workes very well.

But I see a lot of 404 server errors and when I take a look in the access.log is saw that they came from localhost. The agent try every 10 minutes these two urls

http://localhost/server_status
http://localhost/status?json=

Is there a configuration error or try the agent different urls to get the server information?

The correct url to got the server information is

http://localhost/nginx_status

how it descripted in the installation

 listen 127.0.0.1:80;
 server_name 127.0.0.1;
 location /nginx_status {
  stub_status on;
  allow 127.0.0.1;
  deny all;
 }
}

System

Nginx: 1.14.0
Php-Fpm: 7.0.30
OS: Ubuntu 18.04