Welcome to Centmin Mod Community
Register Now

Nginx Amplify Question

Discussion in 'Nginx, PHP-FPM & MariaDB MySQL' started by cloud9, Apr 10, 2022.

  1. cloud9

    cloud9 Premium Member Premium Member

    435
    118
    43
    Oct 6, 2015
    England
    Ratings:
    +218
    Local Time:
    3:55 AM
    1.25.3
    10.6.x
    Just running through the amplify instructions on CMM (here)


    Opened amplify and have this screen

    Advisable to do this ?

    Screenshot 2022-04-10 at 08.28.37.png
     
  2. eva2000

    eva2000 Administrator Staff Member

    54,906
    12,240
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,811
    Local Time:
    1:55 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Instructions would slightly differ in path/location of files to edit etc. See https://community.centminmod.com/threads/nginx-amplify-open-source-monitoring-service.4963/ - long read but gist is Centmin Mod also has that setup in main hostname's Nginx vhost at /usr/local/nginx/conf/conf.d/virtual.conf for

    Code (Text):
            location /nginx_status {
            stub_status on;
            access_log   off;
            allow 127.0.0.1;
            #allow youripaddress;
            deny all;
            }
    

    So nothing to do on your end for Centmin Mod Nginx status metrics to be seen by Nginx Amplify :)
     
  3. cloud9

    cloud9 Premium Member Premium Member

    435
    118
    43
    Oct 6, 2015
    England
    Ratings:
    +218
    Local Time:
    3:55 AM
    1.25.3
    10.6.x
    Done thank you