Bugzilla Apache服务器配置

3

我在我的Centos5.5专用服务器上安装了Bugzilla。此服务器上已经运行着一个使用Apache配置的网站。

<VirtualHost *:80>
DocumentRoot /var/www/html/XXX
..
</VirtualHost>

我已在Apache上定义了一个新的虚拟主机,如下所示:

<VirtualHost *:8000>
   DocumentRoot /var/www/html/bugzilla

   <Directory /var/www/html/bugzilla>
      AddHandler cgi-script cgi pl
      Options +Indexes +ExecCGI
      DirectoryIndex index.cgi
      AllowOverride Limit
   </Directory>
</VirtualHost>

然而,无论如何我都无法访问bugzilla。有什么正确的方法吗? 谢谢。
1个回答

0

防火墙是否有可能阻止8000端口的访问?


我该如何检查/打开该端口? - brsbilgic
您可以在此处查看http://ll.51f.us/?p=217的示例,了解如何修改iptables配置。 - Gabriel Ross
您可以使用 netstat -an 命令检查开放的端口。 - ramrunner

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接