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

发布于 2024-10-12 05:03:24 字数 363 浏览 3 评论 0原文

我想针对使用 collabnet Edge 安装的 apache 服务器安装 bugzilla。我已经安装了所有东西,我的问题是我无法弄清楚我需要编辑哪个 httpd.conf 文件。 Collabnet Edge 有大约 5 个conf 文件,所有这些文件都是自动生成的,并在第一行警告“请勿编辑”。

有谁知道我该怎么做?如果没有,是否可以安装另一个[实例]?阿帕奇的?

ps:这也是在Windows 2008服务器上,IIS关闭。

pps:另外,我愿意将我的存储库移至另一个 svn 服务器/问题跟踪器。只要它是免费的并且在 server2008 上运行。我刚刚有过 bugzilla 的经验(作为开发人员/最终用户)。

任何想法将不胜感激

I want to install bugzilla against the apache server that installed with collabnet edge. I've already gotten everything installed, my problem is that I can't figure out which httpd.conf file i need to edit. Collabnet Edge has about 5 conf files, all these files are autogenerated and warn "DO NOT EDIT" in the first line.

Does anyone know how I can do this? if not is it possible to install another [instance]? of apache?

ps: Also this is on windows 2008 server, with IIS shut off.

pps: Also, I am open to the idea of moving my repo to another svn server/issue tracker. as long as it's free and runs on server2008. I just have past experience with bugzilla (as a developer/enduser).

Any thoughts would be appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

勿忘初心 2024-10-19 05:03:24

是的。这是。 首先,不要触及 collabnet apache 服务器安装中的任何文件。我继续安装了单独安装的 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 和 Windows 的可移植性。 Linux http://www.ricocheting.com/how-to-install-在 Windows/Perl 上

Yes. It is. First, do not touch any files in the collabnet apache server install. I went ahead and installed a separate installed a separate instance of Apache, which I bound to an non-standard port. I had to add an alias line to the new apache to create Bugzilla as a folder under my main site

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>

Once this was complete I was able to follow the tutorial at https://wiki.mozilla.org/Bugzilla:Win32Install

Also make sure you install ActivePerl @ C:\usr if you don't you have to go in an change every *.cgi file.... read this tutorial on how to install ActivePerl to maximize portability with windows & linux http://www.ricocheting.com/how-to-install-on-windows/perl

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文