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

<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。什么是正确的方法?
谢谢

最佳答案

防火墙是否有可能阻塞端口8000?

关于apache - Bugzilla Apache服务器配置,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7610078/

10-10 19:13