-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.php
36 lines (35 loc) · 929 Bytes
/
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
<?php
$localConfig = __DIR__ . "/config_local.php";
if (file_exists($localConfig)) {
include $localConfig;
} else {
$server_config = array(
65000 => array(
'WebSocket' => array(
'hosts' => array(
'localhost' => array('WebChat', 'SimpleEcho'),
)
),
'ssl' => array(
'cert_file' => '',
'privkey_file' => '',
'passphrase' => ''
)
),
65001 => array(
'RawTcp' => array()
),
65002 => array(
'Http' => array(
'hosts' => array(
'localhost' => array('HelloWorld', 'Maintenance'),
)
),
'ssl' => array(
'cert_file' => '',
'privkey_file' => '',
'passphrase' => ''
)
)
);
}