| 2 |
liveuser |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/*
|
|
|
4 |
|
|
|
5 |
QBPWCF, Quick Build PHP website Component base on Fedora Linux.
|
|
|
6 |
Copyright (C) 2015~2025 Min-Jhin,Chen
|
|
|
7 |
|
|
|
8 |
This file is part of QBPWCF.
|
|
|
9 |
|
|
|
10 |
QBPWCF is free software: you can redistribute it and/or modify
|
|
|
11 |
it under the terms of the GNU General Public License as published by
|
|
|
12 |
the Free Software Foundation, either version 3 of the License, or
|
|
|
13 |
(at your option) any later version.
|
|
|
14 |
|
|
|
15 |
QBPWCF is distributed in the hope that it will be useful,
|
|
|
16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
18 |
GNU General Public License for more details.
|
|
|
19 |
|
|
|
20 |
You should have received a copy of the GNU General Public License
|
|
|
21 |
along with QBPWCF. If not, see <http://www.gnu.org/licenses/>.
|
|
|
22 |
|
|
|
23 |
*/
|
|
|
24 |
|
|
|
25 |
#頁面說明:
|
|
|
26 |
#提供給 allInOneFull.php、allInOneForCI.php、allInOneForCmd.php、allInOneForJson.php、allInOneForSOAP.php 使用的全域設定檔案
|
|
|
27 |
|
|
|
28 |
#資料庫連結用的資訊 - start
|
|
|
29 |
|
|
|
30 |
#資料庫的位置
|
|
|
31 |
$dbAddress="localhost";
|
|
|
32 |
|
|
|
33 |
#資料庫的 tcp port
|
|
|
34 |
$dbPort="3306";
|
|
|
35 |
|
|
|
36 |
#資料庫帳號
|
|
|
37 |
$dbAccount="";
|
|
|
38 |
|
|
|
39 |
#資料庫密碼
|
|
|
40 |
$dbPassword="";
|
|
|
41 |
|
|
|
42 |
#資料庫名稱
|
|
|
43 |
$dbName="";
|
|
|
44 |
|
|
|
45 |
#資料庫連結用的資訊 - end
|
|
|
46 |
|
|
|
47 |
#bbb service url
|
|
|
48 |
$bbbUrl="";
|
|
|
49 |
|
|
|
50 |
#bbb service secret
|
|
|
51 |
$bbbSecret="";
|
|
|
52 |
|
|
|
53 |
#資料庫系統的使用密碼
|
|
|
54 |
$dbSecret="";
|
|
|
55 |
|
|
|
56 |
#qbpwcf unix domain socket path
|
|
|
57 |
$qbpwcf_usock_path=pathinfo(__FILE__)["dirname"]."/../../var/qbpwcf/qbpwcf-usock.sock";
|
|
|
58 |
|
|
|
59 |
#Zero SSL API access key
|
|
|
60 |
$zeroSSLapiKey="";
|
|
|
61 |
|
|
|
62 |
?>
|