#!/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"] ]; } #### ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all AddHandler fcgid-script .psgi #### HTTP::Server::PSGI: Accepting connections at http://0:5000