I am trying to install
CUFTS (a web-based resource management software) on an Amazon Linux instance. I got the software and its dependencies loaded, but when I try to start Apache...
Code:
$sudo service httpd start
Starting httpd: Starting up... at /usr/local/CUFTS/util/startup.pl line 13.
AH00526: Syntax error on line 7 of /usr/local/CUFTS/util/httpd.conf:
PerlModule directive not allowed in a <Location> block
The offending line is PerlModule in the following:
Code:
<Perl>
use lib qw[/usr/local/CUFTS/lib /usr/local/CUFTS/MaintTool/lib /usr/local/CUFTS/CJDB/lib /usr/local/CUFTS/Resolver/lib];
</Perl>
<Location /MaintTool>
PerlModule CUFTS::MaintTool
SetHandler perl-script
PerlHandler CUFTS::MaintTool
</Location>
Anyone have any ideas on how to fix this?