mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-10-11 02:29:03 +02:00
Simple example configuration, quick & dirty but functional. Didn't care about a config, as that will be handled by the setup wizard. refs #6402
7 lines
174 B
PHP
Executable File
7 lines
174 B
PHP
Executable File
#!/usr/bin/php
|
|
<?php
|
|
|
|
define('ICINGAWEB_APPDIR', '/usr/share/icingaweb/application');
|
|
require_once 'Icinga/Application/Cli.php';
|
|
Icinga\Application\Cli::start()->dispatch();
|