Ubuntu服务器上的Mercurial服务器

时间:2014-03-07 15:20:34

标签: ubuntu mercurial

我的Mercurial服务器无法使用。

当我访问此页面127.0.0.1/mercurial时,会显示以下文字:

#!/usr/bin/env python
#
# 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 = "/var/www/hgweb.config"

# 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")

# 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)

我跟着this tutorial

我在目录/var/www/中配置了服务器。

有什么问题?

1 个答案:

答案 0 :(得分:1)

Apache将您的.cgi文件解释为要提供的文本文件,而不是运行的问题。很可能缺少ScriptAliasMatch或使其工作所需的某些模块,或者您没有为cgi文件设置执行权限。这应该在服务器故障上结束 - 它是关于服务器管理而不是软件开发,你可能会在那里得到更详细的答案。