Search found 4 matches

by zeotech
Sat Aug 06, 2022 5:05 am
Forum: Open Source Nagios Projects
Topic: I made a Nagios monitoring tool.(Android App)
Replies: 2
Views: 1320

Re: I made a Nagios monitoring tool.

Made it work on Android6 and later.
I would be happy if everyone could use it.
by zeotech
Thu Aug 04, 2022 9:12 pm
Forum: Open Source Nagios Projects
Topic: I made a Nagios monitoring tool.(Android App)
Replies: 2
Views: 1320

I made a Nagios monitoring tool.(Android App)

I made a monitoring tool that works on Android. You can access information held by Nagios without accessing the Nagios web interface. Suggestions/advice are welcome. Please contact us anytime. NAGMON https://play.google.com/store/apps/details?id=net.zeotech.nagmon I would be happy if you could use it.
by zeotech
Thu Nov 19, 2020 8:05 pm
Forum: Open Source Nagios Projects
Topic: Unable to curl against cmd.cgi
Replies: 2
Views: 1106

Re: Unable to curl against cmd.cgi

I've solved it myself. Modified nginx.conf as follows location ~ \.cgi$ { fastcgi_pass 127.0.0.1:9001; fastcgi_split_path_info ^/nagios/cgi-bin/(.+\.cgi)(.*)$; fastcgi_param CONTENT_LENGTH $content_length;    ←This added. fastcgi_param QUERY_STRING $query_string; fastcgi_param REQUEST_METHOD $reques...
by zeotech
Thu Nov 19, 2020 3:28 am
Forum: Open Source Nagios Projects
Topic: Unable to curl against cmd.cgi
Replies: 2
Views: 1106

Unable to curl against cmd.cgi

I am running this command curl -s -S http://nagios.example.com/nagios/cgi-bin/cmd.cgi -u nagiosadmin:nagios -d "cmd_typ=22&host=localhost&service=SSH" when I run the command I get; <html> <head><title>502 Bad Gateway</title></head> <body> <center><h1>502 Bad Gateway</h1></center> <...