Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sodabrew/mod_perlite
A lightweight Apache module for Perl scripts
https://github.com/sodabrew/mod_perlite
Last synced: 3 months ago
JSON representation
A lightweight Apache module for Perl scripts
- Host: GitHub
- URL: https://github.com/sodabrew/mod_perlite
- Owner: sodabrew
- Archived: true
- Created: 2008-12-11T18:00:37.000Z (almost 16 years ago)
- Default Branch: master
- Last Pushed: 2009-10-14T23:24:58.000Z (about 15 years ago)
- Last Synced: 2024-07-19T22:42:26.134Z (4 months ago)
- Language: C
- Homepage: http://modperlite.org/
- Size: 229 KB
- Stars: 86
- Watchers: 4
- Forks: 7
- Open Issues: 10
-
Metadata Files:
- Readme: README
- Changelog: Changes
Awesome Lists containing this project
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 installThen add the following directives to your Apache httpd.conf:
LoadModule perlite_module modules/mod_perlite.so
AddType application/x-httpd-perlite .pl
AddDirectoryIndex index.plThe 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.8You 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
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.