是否可以将Bugzilla安装到运行collabnet subversion edge的apache服务器中

我想针对安装了collabnet edge的apache服务器安装bugzilla。我已经安装了所有东西,我的问题是我无法弄清楚我需要编辑哪个httpd.conf文件。 Collabnet Edge有大约5个conf文件,所有这些文件都是自动生成的,并在第一行警告“请勿编辑”。 有谁知道我怎么做到这一点?如果不是可以安装另一个[实例]?阿帕奇? ps:这也是在Windows 2008服务器上,IIS关闭。 pps:另外,我愿意将我的repo移动到另一个svn服务器/问题跟踪器。只要它是免费的并在server2008上运行。我刚刚有过bugzilla的经验(作为开发人员/最终用户)。 任何想法将不胜感激     
已邀请:
是。它是。首先,不要触摸collabnet apache server install中的任何文件。我继续安装了一个单独安装的Apache实例,我绑定了一个非标准端口。我不得不在新的apache中添加一个别名行来创建Bugzilla作为我主站点下的文件夹
NameVirtualHost xxx.xxx.xxx.local

<VirtualHost
 xxx.xxx.scgov.local>  
 ServerName xxx.xxx.xxx.local
 DocumentRoot "C:/Apache2.2/htdocs"
</VirtualHost>

<VirtualHost
 xxx.xxx.xxx.local>  
 ServerName xxx.xxx.xxx.local
 DocumentRoot "C:/bugzilla"
</VirtualHost>

<Directory "C:bugzilla">
  AddHandler cgi-script .cgi
  Options +Indexes +ExecCGI
  DirectoryIndex index.cgi
  AllowOverride Limit FileInfo Indexes
  Order allow,deny
  Allow from all
</Directory>
一旦完成,我就可以按照https://wiki.mozilla.org/Bugzilla:Win32Install上的教程进行操作 还要确保安装ActivePerl @ C: usr如果你不需要每个* .cgi文件都进行更改....阅读本教程,了解如何安装ActivePerl以最大限度地提高Windows和Linux的可移植性。 linux http://www.ricocheting.com/how-to-install-on-windows/perl     

要回复问题请先登录注册