{{ t('Configuration Wizard: nginx Status') }}
{{ t('Host Information') }}
{{ t('Configure services for nginx Status') }}

{{ t('nginx Status') }}

  1. {{ t('Add the following code to your nginx configuration file in the monitored server:') }}
    location /stub_status {
      # Turn on nginx stats
      stub_status on;
    
      # Disable access.log for stats
      access_log off;
    }
  2. {{ t('Restart the ngninx server:') }}
    systemctl restart nginx
{{ t('If your nginx server is running SSL, the check-command needs the optional parameter --ssl.') }}