gohookr/config.json

35 lines
700 B
JSON
Raw Permalink Normal View History

2021-07-28 15:20:06 +00:00
{
"ListenAddress": "127.0.0.1:8654",
2021-07-28 15:20:06 +00:00
"Services": {
"test": {
"Script": {
"Program": "./example.sh",
2023-10-28 20:48:54 +00:00
"AppendPayload": true,
"AppendHeaders": true
},
"DisableSignatureVerification": true,
2021-07-29 06:42:02 +00:00
"Tests": [
{
"Program": "echo",
"Arguments": [ "test" ]
2021-07-29 06:42:02 +00:00
}
]
2021-08-06 13:54:36 +00:00
},
"fails_tests": {
"Script": {
"Program": "./example.sh",
"AppendPayload": true
},
"Secret": "who_cares",
"SignatureHeader": "X-Hub-Signature-256",
"SignaturePrefix": "sha256=",
"Tests": [
{
"Program": "false",
"Arguments": []
}
]
2021-07-28 15:20:06 +00:00
}
}
}