Subversion Repositories qbpwcf-lib(archive)

Rev

Rev 950 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
436 liveuser 1
<?php
2
 
3
/*
4
 
5
	QBPWCF, Quick Build PHP website Component base on Fedora Linux.
846 liveuser 6
    Copyright (C) 2015~2025 Min-Jhin,Chen
436 liveuser 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
 
486 liveuser 28
#資料庫連結用的資訊 - start
436 liveuser 29
 
486 liveuser 30
#資料庫的位置
31
$dbAddress="localhost";
32
 
33
#資料庫的 tcp port
34
$dbPort="3306";
35
 
36
#資料庫帳號
956 liveuser 37
$dbAccount="";
486 liveuser 38
 
39
#資料庫密碼
956 liveuser 40
$dbPassword="";
486 liveuser 41
 
42
#資料庫名稱
956 liveuser 43
$dbName="";
486 liveuser 44
 
45
#資料庫連結用的資訊 - end
46
 
440 liveuser 47
#bbb service url
956 liveuser 48
$bbbUrl="";
436 liveuser 49
 
50
#bbb service secret
956 liveuser 51
$bbbSecret="";
436 liveuser 52
 
53
#資料庫系統的使用密碼
956 liveuser 54
$dbSecret="";
436 liveuser 55
 
56
#qbpwcf unix domain socket path
956 liveuser 57
$qbpwcf_usock_path="usr/lib/qbpwcf/qbpwcf-usock.sock";
436 liveuser 58
 
821 liveuser 59
#Zero SSL API access key
927 liveuser 60
$zeroSSLapiKey="";
821 liveuser 61
 
956 liveuser 62
#google re CAPTHCA secret
63
$googleReCAPTCHAsecret="";
64
 
436 liveuser 65
?>