gpt4 book ai didi

ubuntu - Ubuntu 服务器上的 Mercurial 服务器

转载 作者:行者123 更新时间:2023-12-04 18:47:41 25 4
gpt4 key购买 nike

我的 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/中配置了服务器.

怎么了?

最佳答案

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

关于ubuntu - Ubuntu 服务器上的 Mercurial 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22253958/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com