8.12 不用ssl来启动Apache,以确保它在工作。
ROOT# chroot /www /apache/bin/apachectl start
$ lynx -dump http://yourserver:8088/
8.13 用ssl来重启Apache,并用netscape来测试它。
ROOT# chroot /www /apache/bin/apachectl stop
ROOT# chroot /www /apache/bin/apachectl startssl
$ netscape https://yourserver/
8.14 现在你可能想要编辑你的server配置文件,并在标准端口(80端口)上设置服务器。
如果你测试配置,你不需要在443端口上进行配置。
9.一些安全考虑
可以从一些在线Apache文档中获取帮助。一个需要特别注意的地方是在httpd脚本上进行的授权改变。
ROOT# chmod ugo-rw /www/apache/bin/*
10.摆脱你自己的虚拟根环境化环境
当你有意要摆脱自己的虚拟根环境化环境时,一定要十分小心。在Unix世界中完成一项任务总是有不同的方法,你可以尝试其他的方法。
我提供了下面一个例子,它可以通过cgi脚本或php来激发。
...
/** construct the file name as $f **/
$cmd = "/bin/mail "-s Some-subject-line -t webmaster@localhost -f $f"";
文章来源于领测软件测试网 https://www.ltesting.net/