Merge pull request #66 from stefansaraev/extra-config

allow including an extra config file outside of db/ root
pull/65/merge
LX1IQ 8 years ago committed by GitHub
commit 1e0ef79ffd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -63,4 +63,14 @@ $CallingHome['HashFile'] = "/tmp/callinghome.php";
$CallingHome['OverrideIPAddress'] = ""; // Insert your IP address here. Leave blank for autodetection. No need to enter a fake address. $CallingHome['OverrideIPAddress'] = ""; // Insert your IP address here. Leave blank for autodetection. No need to enter a fake address.
$CallingHome['InterlinkFile'] = "/xlxd/xlxd.interlink"; // Path to interlink file $CallingHome['InterlinkFile'] = "/xlxd/xlxd.interlink"; // Path to interlink file
/*
include an extra config file for people who dont like to mess with shipped config.ing.php
this makes updating dashboard from git a little bit easier
*/
if (file_exists("../config.inc.php")) {
include ("../config.inc.php");
}
?> ?>

@ -63,4 +63,14 @@ $CallingHome['HashFile'] = "/tmp/callinghome.php";
$CallingHome['OverrideIPAddress'] = ""; // Insert your IP address here. Leave blank for autodetection. No need to enter a fake address. $CallingHome['OverrideIPAddress'] = ""; // Insert your IP address here. Leave blank for autodetection. No need to enter a fake address.
$CallingHome['InterlinkFile'] = "/xlxd/xlxd.interlink"; // Path to interlink file $CallingHome['InterlinkFile'] = "/xlxd/xlxd.interlink"; // Path to interlink file
/*
include an extra config file for people who dont like to mess with shipped config.ing.php
this makes updating dashboard from git a little bit easier
*/
if (file_exists("../config.inc.php")) {
include ("../config.inc.php");
}
?> ?>

Loading…
Cancel
Save

Powered by TurnKey Linux.