The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Mojolicious::Command::Fastcgi - FastCGI Command

SYNOPSIS

    use Mojolicious::Command::Fastcgi;

    my $fastcgi = Mojolicious::Command::Fastcgi->new;
    $fastcgi->run;

DESCRIPTION

Mojolicious::Command::Fastcgi is a command interface to Mojo::Server::FastCGI.

ATTRIBUTES

Mojolicious::Command::FastCGI inherits all attributes from Mojo::Command and implements the following new ones.

description

    my $description = $fastcgi->description;
    $fastcgi        = $fastcgi->description('Foo!');

Short description of this command, used for the command list.

usage

    my $usage = $fastcgi->usage;
    $fastcgi  = $fastcgi->usage('Foo!');

Usage information for this command, used for the help screen.

METHODS

Mojolicious::Command::Fastcgi inherits all methods from Mojo::Command and implements the following new ones.

run

    $fastcgi = $fastcgi->run;

Run this command.

SEE ALSO

Mojolicious, Mojolicious::Guides, http://mojolicious.org.