7

I'm not sure if this is even possible but can I show the stdout of a linux command via webserver?

The command I want to run is echo 'status' | nc localhost 4730 which returns a string with status of the gearman job server.

$echo 'status' | nc localhost 4730
function1      0       0       0
function2      0       0       1

My server's running nginx. I want to open a URL like http://domain.tld/gearman-status and it should return the current status by running that command.

What should I put in the location block of nginx to do that?

location /gearman-status {
  ?
}

Thanks

2 Answers2

4

nginx lacks CGI support so it can't execute any scripts directly. You'll need to setup FastCGI server and call it from nginx by using fastcgi_pass in your location directive. There is example of such FastCGI wrapper in nginx wiki - see this link.

AlexD
  • 8,179
  • 2
  • 28
  • 38
1

You can just write a small PHP or perl file and put it in the required path. This small file will execute the script or commands you want and print the output. You can use the backquotes `command` to do this.

Khaled
  • 35,688
  • 8
  • 69
  • 98