• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Installing git in chroot

DougCurtis

Basic Pleskian
I have customers that want the git program to be able to pull/push their github repos. I've copied all of the files in the git rpm into the site's chroot but whenever they try to pull down their repo via ssl they get this message:

error: while accessing https://github.com/USERNAME/PROJECT.git/info/refs

fatal: HTTP request failed

We have gotten ssh to work with git but the ssl issue still isn't working.

Thanks,

Doug
 
Has anybody run into this issue? This is a major headache for me since users are clamoring for version control via git but can't use it completely.
 
With RHEL6, I ended up having to install a LOT of dependencies. In the end, it usually ended up being one library that was missing. I was working on statically compiling git for people to use but it's way down on the list of things to get done.
 
had the same problem on almalinux 8
the directory git-core was missing in the chroot
solved with
rsync -avz /usr/libexec/git-core/. /var/www/vhosts/domain.com/usr/libexec/git-core/.
 
Back
Top