TelegramApiServer/config.php

48 lines
1.7 KiB
PHP
Raw Normal View History

<?php
return [
'swoole' => [
'server' => [
2019-03-19 00:36:20 +01:00
'address' => (string)getenv('SWOOLE_SERVER_ADDRESS'),
'port' => (string)getenv('SWOOLE_SERVER_PORT'),
],
2019-03-19 00:36:20 +01:00
'options' => [
'worker_num' => (int)getenv('SWOOLE_WORKER_NUM'),
'http_compression' => (bool)getenv('SWOOLE_HTTP_COMPRESSION'),
]
],
'telegram' => [
'app_info' => [ // obtained in https://my.telegram.org
2019-03-19 00:36:20 +01:00
'api_id' => getenv('TELEGRAM_API_ID'),
'api_hash' => getenv('TELEGRAM_API_HASH'),
],
'logger' => [ // Logger settings
2019-03-19 00:36:20 +01:00
'logger' => 3, // 0 - Logs disabled, 3 - echo logs.
2019-03-31 03:23:25 +02:00
'logger_level' => \danog\MadelineProto\Logger::FATAL_ERROR, // Logging level, available logging levels are: ULTRA_VERBOSE - 0, VERBOSE - 1 , NOTICE - 2, WARNING - 3, ERROR - 4, FATAL_ERROR - 5.
],
'updates' => [
2019-03-19 00:36:20 +01:00
'handle_updates' => false, // Should I handle updates?
'handle_old_updates' => false, // Should I handle old updates on startup?
],
'connection_settings' => [
'all' => [
2019-03-19 00:36:20 +01:00
'proxy' => '\SocksProxy',
'proxy_extra' => [
'address' => getenv('TELEGRAM_PROXY_ADDRESS'),
'port' => getenv('TELEGRAM_PROXY_PORT'),
'username' => getenv('TELEGRAM_PROXY_USERNAME'),
'password' => getenv('TELEGRAM_PROXY_PASSWORD'),
]
]
]
],
2019-01-20 18:20:41 +01:00
'api' => [
2019-03-19 23:56:28 +01:00
'ip_whitelist' => array_filter(
array_map(
'trim',
explode(',', getenv('IP_WHITELIST'))
)
),
2019-02-01 15:28:50 +01:00
'index_message' => getenv('API_INDEX_MESSAGE'),
2019-01-20 18:20:41 +01:00
],
];