gpt4 book ai didi

apache - 访问远程 Mercurial 服务器时,我只打印了 hgweb.cgi python 脚本

转载 作者:行者123 更新时间:2023-12-04 18:43:51 24 4
gpt4 key购买 nike

我正在尝试重建我的 Banana Pi 服务器,但发生了灾难性的 HDD 故障。我已经备份了所有存储库,但我无法让 Web 服务器在 Armbian Linux 上运行(本质上是 Ubuntu,仅适用于小型 ARM 板)。
我已按照此处的说明进行操作:
https://www.mercurial-scm.org/wiki/HgWebDirStepByStep
但是当我转到 pi/hg 时,之前我会得到我所有存储库的列表,我只是得到 hgweb.cgi 脚本被打印出来:

#!/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 = "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)
当然,我不能从远程机器推送到存储库,我收到错误 404。
我认为该脚本是我之前运行的脚本。它看起来与 Mercurial 安装中的示例相同,但具有:
config = "hgweb.config"
所以,问题是:
那个脚本看起来对吗?
我是否应该安装一些东西让 wsgicgi 工作。事实上,我什至应该使用它吗?
您是否需要任何其他信息来解决此问题?
非常感谢。

最佳答案

FWIW,我发现其他人也有类似的问题,他们改为 hgweb.wsgi,所以我试了一下,它可以工作。也许更高版本的 mercurial 和/或 apache 不喜欢旧方法。

关于apache - 访问远程 Mercurial 服务器时,我只打印了 hgweb.cgi python 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63428834/

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