mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-29 06:34:37 +00:00
Config for webhooks.
This commit is contained in:
@@ -276,6 +276,11 @@ TRACKER_URL=
|
|||||||
# To read more about this feature, go to this page: https://docs.firefly-iii.org/support/telemetry
|
# To read more about this feature, go to this page: https://docs.firefly-iii.org/support/telemetry
|
||||||
SEND_TELEMETRY=false
|
SEND_TELEMETRY=false
|
||||||
|
|
||||||
|
#
|
||||||
|
# Firefly III supports webhooks. These are security sensitive and must be enabled manually first.
|
||||||
|
#
|
||||||
|
ALLOW_WEBHOOKS=false
|
||||||
|
|
||||||
# You can fine tune the start-up of a Docker container by editing these environment variables.
|
# You can fine tune the start-up of a Docker container by editing these environment variables.
|
||||||
# Use this at your own risk. Disabling certain checks and features may result in lost of inconsistent data.
|
# Use this at your own risk. Disabling certain checks and features may result in lost of inconsistent data.
|
||||||
# However if you know what you're doing you can significantly speed up container start times.
|
# However if you know what you're doing you can significantly speed up container start times.
|
||||||
|
|||||||
@@ -92,6 +92,7 @@ return [
|
|||||||
'feature_flags' => [
|
'feature_flags' => [
|
||||||
'export' => true,
|
'export' => true,
|
||||||
'telemetry' => true,
|
'telemetry' => true,
|
||||||
|
'webhooks' => false,
|
||||||
],
|
],
|
||||||
|
|
||||||
'version' => '5.4.6',
|
'version' => '5.4.6',
|
||||||
@@ -120,6 +121,7 @@ return [
|
|||||||
'cer_provider' => envNonEmpty('CER_PROVIDER', 'fixer'),
|
'cer_provider' => envNonEmpty('CER_PROVIDER', 'fixer'),
|
||||||
'update_endpoint' => 'https://version.firefly-iii.org/index.json',
|
'update_endpoint' => 'https://version.firefly-iii.org/index.json',
|
||||||
'send_telemetry' => env('SEND_TELEMETRY', false),
|
'send_telemetry' => env('SEND_TELEMETRY', false),
|
||||||
|
'allow_webhooks' => env('ALLOW_WEBHOOKS', false),
|
||||||
'telemetry_endpoint' => 'https://telemetry.firefly-iii.org',
|
'telemetry_endpoint' => 'https://telemetry.firefly-iii.org',
|
||||||
'layout' => envNonEmpty('FIREFLY_III_LAYOUT', 'v1'),
|
'layout' => envNonEmpty('FIREFLY_III_LAYOUT', 'v1'),
|
||||||
'update_minimum_age' => 6,
|
'update_minimum_age' => 6,
|
||||||
|
|||||||
Reference in New Issue
Block a user