
Catalyst::Engine::Server - Catalyst Server Engine *DEPRECATED*

A script using the Catalyst::Engine::Server module might look like:
#!/usr/bin/perl -w
BEGIN { $ENV{CATALYST_ENGINE} = 'Server' }
use strict;
use lib '/path/to/MyApp/lib';
use MyApp;
MyApp->run;

This module is no longer recommended, and does not work correctly with latest versions of Catalyst. Please use Catalyst::Engine::HTTP, which is included in the main Catalyst distribution.

Make HTTP/1.1 optional.

Catalyst, Catalyst::Engine, Catalyst::Engine::Server::PreFork.

Christian Hansen, ch@ngmedia.com

This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.