2017-09-05 11:48:35 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2021-01-21 10:59:27 +01:00
|
|
|
* Copyright (c) 2021, Art of WiFi
|
2017-09-05 11:48:35 +02:00
|
|
|
*
|
2021-01-21 10:59:27 +01:00
|
|
|
* This file is subject to the MIT license that is bundled with this package in the file LICENSE.md
|
2017-09-05 11:48:35 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Controller configuration
|
|
|
|
* ===============================
|
|
|
|
* Copy this file to your working directory, rename it to config.php and update the section below with your UniFi
|
|
|
|
* controller details and credentials
|
|
|
|
*/
|
|
|
|
$controlleruser = ''; // the user name for access to the UniFi Controller
|
|
|
|
$controllerpassword = ''; // the password for access to the UniFi Controller
|
2020-02-06 08:52:49 +01:00
|
|
|
$controllerurl = ''; // full url to the UniFi Controller, eg. 'https://22.22.11.11:8443', for UniFi OS-based
|
|
|
|
// controllers a port suffix isn't required, no trailing slashes should be added
|
|
|
|
$controllerversion = ''; // the version of the Controller software, e.g. '4.6.6' (must be at least 4.0.0)
|
2017-09-05 11:48:35 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* set to true (without quotes) to enable debug output to the browser and the PHP error log
|
|
|
|
*/
|
2018-03-18 14:28:40 +01:00
|
|
|
$debug = false;
|