Improve webhook behaviour for Gitea

Webhook execution in Gitea will now wait longer before returning, and
Hugo will correctly set permissions on destination directories.
This commit is contained in:
Alex Palaistras 2022-10-28 18:33:42 +01:00
parent 97f409de0b
commit b7ca813a40
2 changed files with 5 additions and 1 deletions

View File

@ -60,6 +60,7 @@ REQUIRE_SIGNIN_VIEW = ${GITEA_REQUIRE_SIGNIN_VIEW}
[webhook]
ALLOWED_HOST_LIST = 10.89.0.0/16
DELIVER_TIMEOUT = 60
[mailer]
ENABLED = true

View File

@ -6,7 +6,6 @@ set -eu
for t in rsa ecdsa ed25519; do
if test ! -f /etc/ssh/keys/ssh_host_${t}_key; then
ssh-keygen -q -t $t -f /etc/ssh/keys/ssh_host_${t}_key -C '' -N '' > /dev/null
chown hugo:hugo /etc/ssh/keys/ssh_host_${t}_key*
fi
echo "Host key type '$t' for SSH authentication:"
@ -16,5 +15,9 @@ done
# Create configuration file from collected templates.
envsubst < /etc/hugo/hooks.yaml.template > /etc/hugo/hooks.yaml
# Correct permissions where needed.
chown hugo:hugo /etc/ssh/keys/ssh_host_*
chown -R hugo:hugo /build
# Run webhook listener for configured hooks.
gosu hugo /bin/webhook -verbose -port 8080 -hooks /etc/hugo/hooks.yaml