public
Description: A lightweight Apache module for Perl scripts
Homepage: http://modperlite.org/
Clone URL: git://github.com/sodabrew/mod_perlite.git
name age message
file Build.PL Wed Oct 14 16:01:15 -0700 2009 Add -Wall to cflags. [sodabrew]
file Changes Sat Oct 10 10:45:12 -0700 2009 Bump version to 0.10 and add changelog messages. [sodabrew]
file Makefile.w32 Sat Oct 10 10:45:12 -0700 2009 Bump version to 0.10 and add changelog messages. [sodabrew]
file README Sat Oct 10 10:45:12 -0700 2009 Bump version to 0.10 and add changelog messages. [sodabrew]
file TODO Sat Oct 10 12:38:38 -0700 2009 [sodabrew]
directory lib/ Wed Oct 14 08:07:22 -0700 2009 declare minimum perl version as per perlver ht... [daxim]
file mod_perlite.c Wed Oct 14 16:21:17 -0700 2009 Remove excess XS declaration macros. [sodabrew]
file mod_perlite.conf Sun Nov 04 22:24:16 -0800 2007 Seriously, svn import was not my friend. [sodabrew]
file mod_perlite.h Sat Oct 10 02:02:45 -0700 2009 Add SysProtect option to require Sys::Protect b... [sodabrew]
directory t/ Wed Oct 14 09:25:06 -0700 2009 add Apache::Test based tests, expound requirements [daxim]
README
mod_perlite version 0.10
========================

mod_perlite is a lightweight Perl module for Apache 2.x that is
easy to install, easy to use, and compatible with the CGI spec.

Your script can find out if it is running under mod_perlite
by checking $ENV{MOD_PERLITE}, which, if present, contains the
version of mod_perlite installed.

INSTALLATION

To install this module type the following:

   perl Build.PL
   ./Build
   ./Build install

Then add the following directives to your Apache httpd.conf:

   LoadModule perlite_module    modules/mod_perlite.so
   AddType application/x-httpd-perlite .pl
   AddDirectoryIndex index.pl

The included mod_perlite.conf wraps these directives and may be
included into your httpd.conf.

DEPENDENCIES

This module requires these other modules and libraries:

  Apache >= 2.x
  Perl >= 5.8

You might have luck compiling this module with Perl 5.6, and you might
have luck installing this module into Apache 1.3. Good for you!

COPYRIGHT AND LICENCE

Copyright (C) 2007-2009 by Aaron Stone <aaron@serendipity.cx>

This program is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.8 or,
at your option, any later version of Perl 5 you may have available.