-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
51 lines (40 loc) · 1.03 KB
/
config.php
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
// protect from direct access
if (!defined('APO')) {
exit;
}
// define master url
define("MASTER_URL", "https://example.com");
// define site name
define("SITE_NAME", "Website Picker");
// Copyright
define("COPYRIGHT", "Myself");
// Authorization (Password)
define("AUTH_ENABLED", false);
define("AUTH_PASSWORD", array(
"Change Me!",
));
// define the options array
define("OPTIONS", array(
[
'url' => 'https://example.com',
'title' => 'My Awesome Website',
'description' => "This is my awesome website!"
],
[
'url' => 'https://example.com',
'title' => 'Control Panel',
'description' => "My control panel!"
],
)
);
// Form ID's
define("FORM_LOGIN", "EgprZi8HjU");
define("FORM_LOGOUT", "FSTNcqr1SH");
// Credits
define("CREDITS", "AProxy Online");
// Include Localization
require_once(ROOT_DIR . "/localization.php");
// Include Auth
require_once(ROOT_DIR . "/auth.php");
?>