-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-example.php
More file actions
31 lines (31 loc) · 842 Bytes
/
config-example.php
File metadata and controls
31 lines (31 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
$useTitle = "My Home Page";
$useDomain = "my.example.com";
$cacheBust = false;
$searchPrefix = "https://www.bing.com/search?q=";
$localDef = array("192.168.1");
$vpnDef = array("10.7.204", "172.185.32.1");
$LauncherIcons = array(
(object) [
'img' => 'icons/mail.png',
'caption' => 'Mail',
'link' => 'https://mail.google.com',
'access' => 'any',
'protocol' => 'any'
],
(object) [
'img' => 'icons/contacts.png',
'caption' => 'Address Book',
'link' => 'https://contacts.google.com',
'access' => 'remote',
'protocol' => 'https'
],
(object) [
'img' => 'icons/Music.png',
'caption' => 'Pandora',
'link' => 'https://www.pandora.com',
'access' => array ('local', 'vpn'),
'protocol' => 'http'
]
);
?>