CGI Params
When installed Jarvis will include a template of the cgi_params.pm
file in the standard configuration directory /etc/jarvis/
. If the cgi_params.pm
file exists at run time it will automatically be included. This allows for the setting of various CGI parameters that must be set before the CGI object is created.
When installed as follows, no CGI parameters are set as configured. Parameters can be uncommented and added as required per the CGI options specifications: http://perldoc.perl.org/CGI.html
# Configure CGI parameters that are automatically set for each CGI request.
# Disable file uploads via post entirely.
#$CGI::DISABLE_UPLOADS = 1;
# Limit the maxiumum post size to 10 megabytes.
#$CGI::POST_MAX = 1024*1024*10;
1;