Fix Webhooks for Drone not working in Gitea 1.16

By default, only external requests are allowed:

https://github.com/go-gitea/gitea/pull/17482
This commit is contained in:
2022-02-12 10:53:45 -06:00
parent a2f1b7ccc6
commit 03c7940f1c
3 changed files with 13 additions and 1 deletions

View File

@@ -4,3 +4,9 @@ node.default["kosmos_gitea"]["binary_url"] = "https://dl.gitea.io/gitea/#{gitea_
node.default["kosmos_gitea"]["binary_checksum"] = "f03f3a3c4dccc2219351cde5c9af372715b2ec3e88a821779702bc6f38084c97"
node.default["kosmos_gitea"]["nginx"]["domain"] = "gitea.kosmos.org"
node.default["kosmos_gitea"]["working_directory"] = "/var/lib/gitea"
node.default["kosmos_gitea"]["config"] = {
"webhook": {
"allowed_host_list" => "external,127.0.1.1"
}
}