This commit is contained in:
2023-06-18 23:26:44 -04:00
parent 8d8eb84e20
commit 98adc9f572
7 changed files with 45 additions and 14 deletions

View File

@ -16,7 +16,7 @@ return [
'error_logs_file' => $_ENV['ERROR_LOGS_FILE'] ?? '/logs/remote.error.log',
'debug_logs_file' => $_ENV['DEBUG_LOGS_FILE'] ?? '/logs/remote.debug.log',
'uri' => $_ENV['IPIFY_URI'] ?? 'https://api64.ipify.org',
'command' => 'php /app/public/index.php',
'command' => $_ENV['COMMAND'] ?? 'php /app/public/index.php',
'period' => $_ENV['WATCH_PERIOD'] ?? 'PT20M',
'retries' => $_ENV['CONNECTION_RETRIES'] ?? 5
];