2

我一直在努力让 Mercurial 在 Windows XP 上与 Apache 一起工作。

我已阅读并尝试了以下 SO 线程中的建议:1234

到目前为止,我所能做的只是一个空白页,当我查看源代码时,我可以看到:

<body bgcolor="#f0f0f8"><font color="#f0f0f8" size="-5"> -->
<body bgcolor="#f0f0f8"><font color="#f0f0f8" size="-5"> --> -->
</font> </font> </font> </script> </object> </blockquote> </pre>
</table> </table> </table> </table> </table> </font> </font> </font>

我正在使用的内容:

  • 阿帕奇 2.2 --C:\Program Files\Apache Software Foundation\Apache2.2\
  • Python 2.4(由 Mercurial 网站推荐)——C:\Program Files\Python\2.4\
  • 水银 1.6 --C:\Program Files\Mercurial\
  • mod_python3.3.1
  • Apache DocumentRoot:C:\htdocs\hg\通过http://hg.paperclip.dev(添加到主机文件)访问
  • Hg 存储库(在网络驱动器上):H:\repo\

我觉得部分复杂性是我的存储库位于网络驱动器上。我可以通过网络驱动器号 H 或通过\\SERVER\WebDev\repo\

mercurial.ini在Mercurial安装目录中如下:

[ui]
editor = Notepad
username = paperclip <p@paperclip.com>

hgweb.config在 apache 提供的 Hg DocumentRoot ( C:\htdocs\hg\)

[collections]
//SERVER/WebDev/repo = //SERVER/WebDev/repo**

我在 apache ( )hgweb.cgi提供的 Hg DocumentRoot 中C:\htdocs\hg\

#!C:/Program Files/Python/2.4/python.exe

# Path to repo or hgweb config to serve (see 'hg help hgweb')
config = "C:/htdocs/hg/hgweb.config"

# Uncomment and adjust if Mercurial is not installed system-wide:
import sys; sys.path.insert(0, "C:/Program Files/Mercurial/lib")

# Uncomment to send python tracebacks to the browser if an error occurs:
import cgitb; cgitb.enable()

from mercurial import demandimport; demandimport.enable()
from mercurial.hgweb import hgweb
from flup.server.fcgi import WSGIServer
application = hgweb(config)
WSGIServer(application).run()

我的 Apache 的 VirtualHosts 文件

<VirtualHost *:80>
  ServerName hg.paperclip.dev
  #ServerAlias paperclip.com *.paperclip.com
  ServerAdmin p@paperclip.com
  CustomLog "logs/hg-access.log" combined
  ErrorLog "logs/hg-error.log"

  RewriteEngine on
  RewriteRule (.*) C:/htdocs/hg/hgweb.cgi/$1

  # Or we can use mod_alias for starting CGI script and making URLs "nice":
  # ScriptAliasMatch ^(.*) C:/htdocs/hg/hgweb.cgi/$1

  <Directory "C:/htdocs/hg/">

    Order allow,deny
        Allow from all
        AllowOverride All
        Options ExecCGI FollowSymLinks +Indexes
        AddHandler cgi-script .cgi

  </Directory>
</VirtualHost>

考虑到上述配置,我欢迎提出一些建议以使其正常工作。任何我可以尝试的东西,因为我已经完全走到了死胡同。

提前谢谢了。

-P。

4

2 回答 2

0

这是昨天发布的:
在 Windows 机器中设置 Mercurial Server - 教程已过时

这家伙设法让 HG + Apache 在 Windows 7 上工作。
我知道,你使用的是 XP 而不是 Win 7,但也许这个链接无论如何对你有帮助。

于 2011-08-18T21:10:18.177 回答
0

汞 2.0.1

阿帕奇 2.2.21

蟒蛇2.6!

#!c:/python26/python.exe
#
# An example hgweb CGI script, edit as necessary
# See also http://mercurial.selenic.com/wiki/PublishingRepositories

# Path to repo or hgweb config to serve (see 'hg help hgweb')
#config = "/path/to/repo/or/config"
config = "c:/batch/merc-web.conf"

# Uncomment and adjust if Mercurial is not installed system-wide
# (consult "installed modules" path from 'hg debuginstall'):
#import sys; sys.path.insert(0, "/path/to/python/lib")
#import sys; sys.path.insert(0, "c:/mercurial")

# Uncomment to send python tracebacks to the browser if an error occurs:
import cgitb; cgitb.enable()

from mercurial import demandimport; demandimport.enable()
from mercurial.hgweb import hgweb, wsgicgi
application = hgweb(config)
wsgicgi.launch(application)

忘记 mod_python,:81 是我机器上的 IIS,而 apache 在 80 和 91 上,所以http://ap.xxx.tzo.net/cgi-bin/hgweb.cgi有效

<VirtualHost *:80>
ServerName ap.xxx.tzo.net
ServerAlias ap.xxx.tzo.net

ProxyPreserveHost On
ProxyPass / http://localhost:91/
ProxyPassReverse / http://localhost:91/
<Proxy http://localhost:91/>
#  Order Allow,Deny
#  Allow from all
   Order Deny,Allow
   Allow from 127.0.0.1
</Proxy>
</VirtualHost>

也 envvar PYTHONPATH C:\Python26

我意识到您使用的是不同版本的 HG 等,但我希望这会有所帮助。我想我花了 2 天时间;)

尝试使用本地存储库,您的 mercurial.ini 是 N/A。我的 merc-web.conf 看起来像:

[web]
style = coal

[paths]
/hgAppThree = C:\!mark\_dev\hgAppThree

这适用于

http://ap.xxx.tzo.net/cgi-bin/hgweb.cgi/hgAppThree

祝你好运!

于 2012-01-06T04:26:08.993 回答