Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

15 строки
503B

  1. <?php
  2. declare(strict_types=1);
  3. return [
  4. 'host' => getenv('PRINTSTREAM_HOST') ?: '',
  5. 'port' => (int) (getenv('PRINTSTREAM_PORT') ?: 1433),
  6. 'database' => getenv('PRINTSTREAM_DATABASE') ?: '',
  7. 'user' => getenv('PRINTSTREAM_USER') ?: '',
  8. 'password' => getenv('PRINTSTREAM_PASSWORD') ?: '',
  9. // Interval used by the cron schedule comment — actual schedule is in docker/crontab
  10. 'import_every_minutes' => (int) (getenv('IMPORT_RUN_EVERY_MINUTES') ?: 30),
  11. ];

Powered by TurnKey Linux.