#!/home/mh/perl514/bin/plackup -s FCGI --listen /tmp/fcgi.sock --daemonize --nproc 10 use strict; use warnings; return sub { return [ 200, ["Content-Type" => "text/plain"], ["hi"] ]; }