Subversion Repositories php-qbpwcf

Rev

Rev 236 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 236 Rev 257
Line 1... Line 1...
1
<?php
1
<?php
2
 
2
 
3
/*
3
/*
4
 
4
 
5
	QBPWCF, Quick Build PHP website Component base on Fedora Linux.
5
        QBPWCF, Quick Build PHP website Component base on Fedora Linux.
6
    Copyright (C) 2014~2025 Min-Jhin,Chen
6
    Copyright (C) 2014~2026 MIN ZHI, CHEN
7
 
7
 
8
    This file is part of QBPWCF.
8
    This file is part of QBPWCF.
9
 
9
 
10
    QBPWCF is free software: you can redistribute it and/or modify
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
11
    it under the terms of the GNU General Public License as published by
Line 38... Line 38...
38
 
38
 
39
#資料庫密碼
39
#資料庫密碼
40
$dbPassword="";
40
$dbPassword="";
41
 
41
 
42
#資料庫名稱
42
#資料庫名稱
43
$dbName="";
43
$dbName="qbpwcf";
44
 
44
 
45
#資料庫連結用的資訊 - end
45
#資料庫連結用的資訊 - end
46
 
46
 
47
#bbb service url
47
#bbb service url
48
$bbbUrl="";
48
$bbbUrl="";
Line 55... Line 55...
55
 
55
 
56
#Zero SSL API access key
56
#Zero SSL API access key
57
$zeroSSLapiKey="";
57
$zeroSSLapiKey="";
58
 
58
 
59
#運行web服務的賬戶
59
#運行web服務的賬戶
60
$webUser="qbpwcf";
60
$webUser="";
61
 
61
 
62
#系統的domain
62
#系統的domain
63
$domain="";
63
$domain="qbpwcf.org";
64
 
64
 
65
#供系統寄送信件的email帳號
65
#供系統寄送信件的email帳號
66
$systemMailAcct="";
66
$systemMailAcct="sender@".$domain;
67
 
67
 
68
#供系統寄送信件的email密碼
68
#供系統寄送信件的email密碼
69
$systemMailPass="";
69
$systemMailPass="";
70
 
70
 
71
#供系統用於加解密的GnuPG ID
71
#供系統用於加解密的GnuPG ID
72
$gnupgId=$webUser."@".$domain;
72
$gnupgId=&$systemMailAcct;
73
 
73
 
74
#資料庫系統加解密用的GnuPG ID
74
#資料庫系統加解密用的GnuPG ID
75
$dbSecret=&$gnupgId;
75
$dbSecret=&$gnupgId;
76
 
76
 
77
#本套件初始化後,要套用的環境模式."release"代表是指共一般使用所需;"develop"代表是在開發狀態下所需
77
#本套件初始化後,要套用的環境模式."release"代表是指共一般使用所需;"develop"代表是在開發狀態下所需