-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
39 lines (23 loc) · 709 Bytes
/
config.php
File metadata and controls
39 lines (23 loc) · 709 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
32
33
34
35
36
37
38
39
<?php
//APP Ordner
$config['app_folder'] = 'app/';
//Main Ordner
$config['app_folder'] = '/';
//Datenbank Einstellungen
$config['mysql_host'] = '###';
$config['mysql_port'] = '3306';
$config['mysql_db'] = 'itech_sdn';
$config['mysql_user'] = 'itech_sdn';
$config['mysql_password'] = '###';
//API Einstellungen
$config['api_location'] = '127.0.0.1/sdn/api/ping-device';
$config['api_key'] = '1q2w3e4r5t6z7u8i9o0p';
//FTP Einstellungen
$config['ftp_protocol'] = 'ftp';
//Lizenzserver
$config['license_server'] = 'license.realtox.network';
$config['license_port'] = '443';
//Lizenzkey
$config['license_key'] = '7saZd98asud98asu89daus08duas0d';
//Die Backup Config befindet sich im Ordner mgmt
?>