Join the community today
Become a Member

Nginx Amplify Question

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

  1. cloud9

    cloud9 Premium Member Premium Member

    431
    117
    43
    Oct 6, 2015
    England
    Ratings:
    +217
    Local Time:
    9:45 PM
    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,647
    12,230
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,799
    Local Time:
    7:45 AM
    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

    431
    117
    43
    Oct 6, 2015
    England
    Ratings:
    +217
    Local Time:
    9:45 PM
    1.25.3
    10.6.x
    Done thank you