Subversion Repositories php-qbpwcf

Rev

Rev 53 | Rev 77 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 liveuser 1
<?php
2
 
3
/*
4
 
5
	QBPWCF, Quick Build PHP website Component base on Fedora Linux.
31 liveuser 6
    Copyright (C) 2014~2025 Min-Jhin,Chen
2 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
 
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
 
30 liveuser 62
#供系統寄送信件的email帳號
63
$systemMailAcct="";
64
 
65
#供系統寄送信件的email密碼
66
$systemMailPass="";
67
 
31 liveuser 68
#供系統用於加解密的GnuPG ID
63 liveuser 69
$gnupgId="";
31 liveuser 70
 
47 liveuser 71
#本套件初始化後,要套用的環境模式."release"代表是指共一般使用所需;"develop"代表是在開發狀態下所需
72
$mode="release";
73
 
53 liveuser 74
#預設 usr/bin/webSocketServer.php Listen 的 addr
75
$webSocketServerDefaultListenAddr="127.0.0.1";
76
 
77
#預設 usr/bin/webSocketServer.php Listen 的port
78
$webSocketServerDefaultListenPort="8080";
79
 
2 liveuser 80
?>