epp-prod.only4.work 改为 epp.only4.work
This commit is contained in:
parent
eae5ac5310
commit
08584c8042
10
TODOs.md
10
TODOs.md
@ -56,12 +56,10 @@ C:\Windows\System32\drivers\etc
|
|||||||
配置项
|
配置项
|
||||||
|
|
||||||
127.0.0.1 epp.only4.work
|
127.0.0.1 epp.only4.work
|
||||||
127.0.0.1 epp-prod.only4.work
|
|
||||||
|
|
||||||
查看配置
|
查看配置
|
||||||
|
|
||||||
ping epp.only4.work
|
ping epp.only4.work
|
||||||
ping epp-prod.only4.work
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -130,14 +128,6 @@ SecretKey 22sVt494mGZeV7sQkqwxnNjneHesqXxA
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# 门禁端网页
|
|
||||||
|
|
||||||
https://epp.only4.work/access/index.html
|
|
||||||
|
|
||||||
https://epp-prod.only4.work/access/index.html
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# 启动远程 Nacos
|
# 启动远程 Nacos
|
||||||
|
|
||||||
> /www/wwwserv/epp/nacos/conf/application.properties port 改为 8488
|
> /www/wwwserv/epp/nacos/conf/application.properties port 改为 8488
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
* - 开发环境:"develop"
|
* - 开发环境:"develop"
|
||||||
*/
|
*/
|
||||||
// 定义常量
|
// 定义常量
|
||||||
const baseUrl = "https://epp-prod.only4.work/"
|
const baseUrl = "https://epp.only4.work/"
|
||||||
const url = baseUrl + "access/wechat/getUnlimitedQRCode"
|
const url = baseUrl + "access/wechat/getUnlimitedQRCode"
|
||||||
const page = "pages/index/index" // "pages/scan/entrance"
|
const page = "pages/index/index" // "pages/scan/entrance"
|
||||||
const envVersion = "release" // 正式版为 "release",体验版为 "trial",开发版为 "develop"
|
const envVersion = "release" // 正式版为 "release",体验版为 "trial",开发版为 "develop"
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
- 线上环境:"https://epp.only4.work/access/index.html?inElectron=true"
|
- 线上环境:"https://epp.only4.work/access/index.html?inElectron=true"
|
||||||
- 开发环境:"http://localhost/access/index.html?inElectron=true"
|
- 开发环境:"http://localhost/access/index.html?inElectron=true"
|
||||||
-->
|
-->
|
||||||
<iframe src="https://epp-prod.only4.work/access/index.html?inElectron=true" frameborder="0"></iframe>
|
<iframe src="https://epp.only4.work/access/index.html?inElectron=true" frameborder="0"></iframe>
|
||||||
<script src="./renderer.js" type="module"></script>
|
<script src="./renderer.js" type="module"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
@ -29,5 +29,5 @@ export default {
|
|||||||
* - 线上环境:"https://epp.only4.work/"
|
* - 线上环境:"https://epp.only4.work/"
|
||||||
* - 开发环境:"http://localhost/"
|
* - 开发环境:"http://localhost/"
|
||||||
*/
|
*/
|
||||||
backendHost: "https://epp-prod.only4.work/",
|
backendHost: "https://epp.only4.work/",
|
||||||
};
|
};
|
||||||
|
@ -12,7 +12,7 @@ App.use(setGlobalDataPlugin, {
|
|||||||
globalData: {
|
globalData: {
|
||||||
debugMode: true, // 是否展示调试内容
|
debugMode: true, // 是否展示调试内容
|
||||||
baseUrl: true
|
baseUrl: true
|
||||||
? "https://epp-prod.only4.work"
|
? "https://epp.only4.work"
|
||||||
: "http://localhost", // 不带最后的 /
|
: "http://localhost", // 不带最后的 /
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
server
|
server
|
||||||
{
|
{
|
||||||
server_name epp-prod.only4.work;
|
server_name epp.only4.work;
|
||||||
listen 80;
|
listen 80;
|
||||||
listen 443 ssl http2;
|
listen 443 ssl http2;
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ App({
|
|||||||
* - 线上环境:'https://epp.only4.work'
|
* - 线上环境:'https://epp.only4.work'
|
||||||
* - 开发环境:'http://localhost'
|
* - 开发环境:'http://localhost'
|
||||||
*/
|
*/
|
||||||
baseUrl: "https://epp-prod.only4.work", // Api 请求域名 不带最后的 /
|
baseUrl: "https://epp.only4.work", // Api 请求域名 不带最后的 /
|
||||||
userInfo: null
|
userInfo: null
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
4
分支说明.md
4
分支说明.md
@ -1,3 +1,3 @@
|
|||||||
main: 开发分支 (域名为epp-.only4.work; 门禁端小程序环境为develop)
|
main: 开发分支 (域名为localhost; 门禁端小程序环境为develop)
|
||||||
production: 生产分支 (基于开发分支,域名改为epp-prod.only4.work; 门禁端小程序环境改为release)
|
production: 生产分支 (基于开发分支,域名改为epp.only4.work; 门禁端小程序环境改为release)
|
||||||
miniprogramAudit: 小程序提审分支 (基于生产分支,从后端动态隐藏小程序端社区码&小商店功能)
|
miniprogramAudit: 小程序提审分支 (基于生产分支,从后端动态隐藏小程序端社区码&小商店功能)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user