#!/usr/bin/perl use strict; use SL::Dispatcher; use SL::FCGIFixes; use SL::LXDebug; our $dispatcher = SL::Dispatcher->new('FastCGI'); $dispatcher->pre_startup_setup; SL::FCGIFixes::apply_fixes(); $dispatcher->pre_startup_checks; $dispatcher->handle_all_requests; 1;