Files
integral-shop/company-info.md
apple 129fa20810 docs: 鹏然项目说明与数据迁移记录
- company-info.md:环境与 hapr191 配置要点
- company-data-imgration.md:库清理规则与保留用户范围

Made-with: Cursor
2026-04-05 09:54:43 +08:00

51 lines
1.2 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
## 公司名称:淮安鹏然商贸
host ip: 114.55.232.191
### crmeb-front模块变更
- 1. profile: hapr191
- 2. profile file: application-hapr191.yml
- 3. PDF合同模板文件路径pdf/sign_contract_pengran.pdf
- 4. 用户合同url地址前缀/落库域名https://hapengran.com/
- 5. imagePath: /www/wwwroot/hapengran.com/
### uniapp前端配置变更
- 1. 积分商城domainhttps://jf.hapengran.com
- 2. 抢购页面跳转地址https://hapengran.com
- 2. /static/sign_contract_pengran.pdf
### 修改任务
- 新建hapr191分支合并shjjy153分支的最新代码到该分支并根据上述信息修改相关需要变更项使符合该新公司项目环境
## 相关文件
- change-list-shjjy153.md
- compare-shjjy153-shccd159.md
## 积分商城nginx站点配置
、、、
# 伪静态
location / {
try_files $uri $uri/ /index.html;
}
# 后端API
location /api/admin {
proxy_pass http://127.0.0.1:30032/api/admin;
}
# 前端API
location /api/front {
proxy_pass http://127.0.0.1:30031/api/front;
}
、、、
、、、启动积分商城api服务
cd /www/wwwroot/javaapi
nohup java -Xms128m -Xmx256m -jar miao-front-2.2.jar > front.log & tail -f front.log
、、、