You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm looking for ways to better debug the git error invalid auth method, I'm not entirely sure what the error is meaning and I'm pretty sure I have everything set up correctly.
I'm using caddy-git 1.0.7 with Caddy 2.5.0 (this version because I hit the error mentioned in #19 on a newer Caddy).
This is my Caddyfile verbatim:
{
order git before reverse_proxy
auto_https off
git {
repo website {
base_dir /mnt
url {env.REPO}
auth key /.ssh/id_rsa passphrase {env.SSH_KEY_PASSPHRASE}
webhook Gitlab X-Gitlab-Token {env.WEBHOOK_SECRET}
branch master
post pull exec {
name Pager
command /usr/bin/echo
args "pulled repo"
}
}
}
}
:80 {
route /webhook {
git update repo website
}
reverse_proxy {
to localhost:1313
}
}
I have verified the environment variables are injected and available. I have verified that the id_rsa key is available - I get a different error if it's not found.
I am trying to clone a Gitlab private repo in the form of [email protected]:/.git
I'm looking for ways to better debug the git error
invalid auth method
, I'm not entirely sure what the error is meaning and I'm pretty sure I have everything set up correctly.I'm using caddy-git 1.0.7 with Caddy 2.5.0 (this version because I hit the error mentioned in #19 on a newer Caddy).
This is my Caddyfile verbatim:
I have verified the environment variables are injected and available. I have verified that the
id_rsa
key is available - I get a different error if it's not found.I am trying to clone a Gitlab private repo in the form of [email protected]:/.git
These are the Caddy errors I see when starting:
Hopefully I'm missing something silly - any help is appreciated.
The text was updated successfully, but these errors were encountered: