Create one test.cgi file and add the folloing test code for checking the .cgi file working on the server.
=======================
#!/usr/local/bin/perl

# hello.pl -- my first perl script!
print "Content-type: text/html\n\n";
print "Hello, world!\n";
=======================