1 use strict; 2 use warnings; 3 4 our $ContactInfo = 'magick-users@imagemagick.org'; 5 our $Debug = undef; # no debugging by default 6 our $DefaultFont = "Arial"; 7 our $DocumentDirectory = '/MagickStudio'; # relative to server root 8 our $DocumentRoot = '/var/www/html/ImageMagick'; # server root 9 our $ExampleImage = 'https://imagemagick.org/image/wizard.jpg'; 10 our $ExpireCache = '+1h'; # when to expire browser cache 11 our $ExpireThreshold = 8*3600; # work files time to live 12 our $IconSize = '100x100>'; 13 our $LoadAverageThreshold = 10.0; # redirect service if load average exceeds threshold 14 our $MaxFilesize = 8192; # max file size in kilobytes 15 our $MaxImageArea = 16384; # max image area in kilobytes (width*height) 16 our $MaxImageExtent = 16384; # max image extent in kilobytes (width*height*frames) 17 our $MaxWorkFiles = 4096; # max number of work files 18 our $MinExpireAge = 7200; # minimum expire age 19 our $RedirectURL = "https://urban-warrior.org/MagickStudio/"; 20 our $SponsorIcon = "networkredux.png"; 21 our $SponsorURL = "http://www.networkredux.com/"; 22 our $Timeout = 120; # timeout value for uploading an image 23 1;