tambah trust proxy

This commit is contained in:
Saufi
2026-06-16 20:06:05 +08:00
parent 9d4717eb45
commit 61f6e3a587
13 changed files with 108 additions and 153 deletions

32
docker/webhook/hooks.json Normal file
View File

@@ -0,0 +1,32 @@
[
{
"id": "myansuran-deploy",
"execute-command": "/deploy.sh",
"command-working-directory": "/srv/myansuran",
"response-message": "Deploy myAnsuran dimulakan.",
"trigger-rule": {
"and": [
{
"match": {
"type": "payload-hmac-sha256",
"secret": "{{ getenv "WEBHOOK_SECRET" }}",
"parameter": {
"source": "header",
"name": "X-Gitea-Signature"
}
}
},
{
"match": {
"type": "value",
"value": "refs/heads/master",
"parameter": {
"source": "payload",
"name": "ref"
}
}
}
]
}
}
]