This commit is contained in:
Daniil Gentili 2024-07-01 12:56:29 +03:00
parent 6518c4bcb4
commit 14a9fcaf85
2 changed files with 7 additions and 7 deletions

View File

@ -60,6 +60,10 @@ $settings = [
'report_broken_media' => false,
'download_parallel_chunks' => 20,
],
'metrics' => [
'enable_prometheus_collection' => true, //(bool)getenv("PROMETHEUS_BIND_TO"),
'metrics_bind_to' => fromString("0.0.0.0:12345")
]
],
'api' => [
'ip_whitelist' => array_filter(
@ -71,10 +75,6 @@ $settings = [
'passwords' => (array)json_decode((string)getenv('PASSWORDS'), true),
'bulk_interval' => (float)getenv('REQUESTS_BULK_INTERVAL')
],
'metrics' => [
'enable_prometheus_collection' => (bool)getenv("PROMETHEUS_BIND_TO"),
'bind_to' => getenv("PROMETHEUS_BIND_TO") ? fromString(getenv("PROMETHEUS_BIND_TO")) : null
]
];
if (empty($settings['telegram']['connection']['proxies']['\danog\MadelineProto\Stream\Proxy\SocksProxy'][0]['address'])) {

View File

@ -5,7 +5,7 @@ services:
service: base-api
ports:
- "127.0.0.1:9503:9503"
- "127.0.0.1:12345:12345"
- "12345:12345"
command:
- "-s=session"
mysql: