红联Linux门户
Linux帮助

Debian etch的apache2之perl cgi编程环境搭建

发布时间:2007-07-31 00:19:09来源:红联作者:acctorairev
使用apt装上apache2后,编辑/etc/apache2/sites-enabled/000-default

DocumentRoot,ScriptAlias /cgi-bin/,ErrorLog等统统放在/home/www下面,然后将www目录的owner设置为你的普通用户,下面的目录一定要简历起来,否则无法启动apache2。

配置 好后就可以在/home/www/cgi/bin/下面写perl的cgi的程序了。顺便贴个hello,world的cgi。

#!/usr/bin/perl

print "Content-type: text/html\n\n";
print "hello,world";
print "hello,world
";
foreach(keys %ENV){
print "$_ = $ENV{$_}\n
";
}
print "";
文章评论

共有 0 条评论