stasis-aries-wal/lang/perl
2011-09-26 00:47:56 +00:00
..
apache Perl updates: 2010-02-17 05:05:23 +00:00
bin Perl updates: 2010-02-17 05:05:23 +00:00
cgi-bin Perl updates: 2010-02-17 05:05:23 +00:00
t update perl unit test to remove stasis_log as well as logfile.txt 2011-09-26 00:47:56 +00:00
CMakeLists.txt Perl updates: 2010-02-17 05:05:23 +00:00
README.cgi-bin sample stasis web services for apache modperl and fastcgi. Both are multithreaded. However, the modperl one is racy. FastCGI is currently the recommended approach 2010-01-19 02:11:04 +00:00
README.modperl sample stasis web services for apache modperl and fastcgi. Both are multithreaded. However, the modperl one is racy. FastCGI is currently the recommended approach 2010-01-19 02:11:04 +00:00
Stasis.pm Perl updates: 2010-02-17 05:05:23 +00:00
typemap initial checkin of perl bindings 2008-10-27 23:25:03 +00:00

This goes in apache.conf:

<IfModule mpm_worker_module>
    StartServers          1
# Only want 1 server; this is a correctness constraint for stasis.
    ServerLimit           1
    MinSpareThreads      25
    MaxSpareThreads      75 
    ThreadLimit         150
    ThreadsPerChild     150
    MaxClients          150
    MaxRequestsPerChild   0
</IfModule>


This goes in the sites-enabled/???:

  PerlRequire /home/sears/stasis/lang/perl/apache/inc/startup.pl

  <Location /stasis>
      SetHandler perl-script
      PerlResponseHandler  StasisWeb::Web
  </Location>

Note that the modapache scripts are currently hardcoded to look in ~sears/stasis/www-data