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

使用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 ""; print "hello,world
"; foreach(keys %ENV){ print "$_ = $ENV{$_}\n
"; } print "";

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzwdsd.html