25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
520B

  1. <section class="health-check">
  2. <h1>Health Check</h1>
  3. <ul class="health-list">
  4. <li><strong>PHP</strong> &mdash; <?= e(PHP_VERSION) ?> &mdash; OK</li>
  5. <li><strong>SQL Server</strong> &mdash;
  6. <?php if ($dbOk): ?>
  7. OK
  8. <?php else: ?>
  9. <span style="color:red">FAILED: <?= e($dbError ?? 'unknown error') ?></span>
  10. <?php endif; ?>
  11. </li>
  12. <li><strong>Environment</strong> &mdash; <?= e($appEnv) ?></li>
  13. </ul>
  14. </section>

Powered by TurnKey Linux.