Subversion Repositories qbpwcf-lib(archive)

Rev

Rev 927 | Go to most recent revision | 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
#資料庫帳號
37
$dbAccount="root";
38
 
39
#資料庫密碼
950 liveuser 40
$dbPassword="dolbyhometheater";
486 liveuser 41
 
42
#資料庫名稱
43
$dbName="test";
44
 
45
#資料庫連結用的資訊 - end
46
 
440 liveuser 47
#bbb service url
950 liveuser 48
$bbbUrl="https://eu27.distancelearning.cloud";
436 liveuser 49
 
50
#bbb service secret
950 liveuser 51
$bbbSecret="Zo2qiH4q0SJLhmlca2zbi3xdk0E4ZXLeEdPkzriQzpk";
436 liveuser 52
 
53
#資料庫系統的使用密碼
950 liveuser 54
$dbSecret="9f448e1a-9d42-11ec-aceb-525411123501";
436 liveuser 55
 
56
#qbpwcf unix domain socket path
57
$qbpwcf_usock_path="/usr/lib/qbpwcf/qbpwcf-usock.sock";
58
 
821 liveuser 59
#Zero SSL API access key
927 liveuser 60
$zeroSSLapiKey="";
821 liveuser 61
 
436 liveuser 62
?>