hgweb 与 mod_wsgi 的 WSGIDaemonProcess 作为另一个用户运行(跳过 chmod/chown)
是否可以使用 mod_wsgi 的 WSGIDaemonProcess 作为另一个用户运行来提供 hgweb,这样就不需要执行任何 chmod/chown 操作?例如,存储库位于 /home/john/repositories
下,而 WSGIDaemonProcess 配置为 user=john
我尝试了该设置并可以浏览/克隆/拉取,但得到了这个尝试推送时出错:
abort: HTTP Error 500: Permission denied
Is it possible to serve hgweb with mod_wsgi's WSGIDaemonProcess running as another user, so that it won't be necessary to do any chmod/chown? E.g. the repositories is under /home/john/repositories
, while the WSGIDaemonProcess is configured with user=john
I tried that setup and can browse/clone/pull, but got this error when trying to push:
abort: HTTP Error 500: Permission denied
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
刚刚发现,如果我同时指定
WSGIApplicationGroup
和WSGIProcessGroup
,设置工作正常。以前,我只输入前者。Just found that the setup works fine if I specify both
WSGIApplicationGroup
andWSGIProcessGroup
. Previously, I only put in the former.