App-FastishCGI
view release on metacpan or search on metacpan
README.mkdn view on Meta::CPAN
Try `--options` for more options.
A systemd service file is provided in the examples folder.
# NGINX CONFIGURATION:
server {
listen 0.0.0.0:80 default;
root /usr/lib/cgi-bin/;
location ~ /(.*\.cgi) {
fastcgi_pass unix:/var/run/fastishcgi.sock;
#fastcgi_pass 127.0.0.1:4001;
include fastcgi_params;
#fastcgi_param SCRIPT_FILENAME /usr/lib/cgi-bin/$1;
}
}
# SEE ALSO
Originally based on [NginxSimpleCGI](http://wiki.nginx.org/NginxSimpleCGI)
lib/App/FastishCGI.pm view on Meta::CPAN
Try C<--options> for more options.
A systemd service file is provided in the examples folder.
=head1 NGINX CONFIGURATION:
server {
listen 0.0.0.0:80 default;
root /usr/lib/cgi-bin/;
location ~ /(.*\.cgi) {
fastcgi_pass unix:/var/run/fastishcgi.sock;
#fastcgi_pass 127.0.0.1:4001;
include fastcgi_params;
#fastcgi_param SCRIPT_FILENAME /usr/lib/cgi-bin/$1;
}
}
=head1 SEE ALSO
Originally based on L<NginxSimpleCGI|http://wiki.nginx.org/NginxSimpleCGI>
( run in 1.235 second using v1.01-cache-2.11-cpan-64ef6c95b5d )