mirror of
https://github.com/codewendao/PayPro.git
synced 2026-09-03 14:17:20 +08:00
132 lines
3.7 KiB
YAML
132 lines
3.7 KiB
YAML
# ==========================================
|
||
# PayPro 生产环境配置
|
||
# 请根据实际情况修改下方配置后执行 ./install.sh
|
||
# ==========================================
|
||
|
||
# ---- Spring Mail 邮件发送配置(必改) ----
|
||
spring:
|
||
mail:
|
||
host: smtp.163.com # SMTP 服务器地址
|
||
port: 25 # SMTP 端口(25/465/587)
|
||
username: xxxxx@163.com # 发件邮箱账号
|
||
password: ${MAIL_PASSWORD:xxxxxx} # 邮箱授权码(非登录密码)
|
||
properties:
|
||
mail:
|
||
smtp:
|
||
auth: true
|
||
starttls:
|
||
enable: true
|
||
required: true
|
||
ssl:
|
||
trust: "smtp.163.com"
|
||
|
||
paypro:
|
||
# ---- 必改项 ----
|
||
# 站点访问地址(改为你的域名或服务器IP)
|
||
site: http://1.14.150.235:8889
|
||
|
||
# ---- 支付宝配置 ----
|
||
# 支付宝用户ID(用于收款)改成你自己的
|
||
alipayUserId: xxxx
|
||
# 支付宝自定义收款码链接 改成你自己的
|
||
alipayCustomQrUrl: https://qr.alipay.com/fkx17492eze99maemka1u81
|
||
|
||
# ---- 站点信息 ----
|
||
# 网站标题(浏览器标签栏) 可改可不改
|
||
title: PayPro个人收款系统
|
||
# 首页标题 可改可不改
|
||
indexTitle: PayPro个人收款系统
|
||
# 收款人姓名 改成你自己的
|
||
name: codewendao
|
||
# 联系电话 可改可不改
|
||
mobile: 'xxxxxx'
|
||
|
||
# ---- 邮箱配置 ----
|
||
email:
|
||
# 接收通知的邮箱 改成你自己的
|
||
receiver: frfr46467979@qq.com
|
||
# 发件邮箱 改成你自己的
|
||
sender: frfr46467978@qq.com
|
||
# 支持邮箱(页面展示) 改成你自己的
|
||
supportMail: frfr46467978@163.com
|
||
|
||
# ---- 限流配置 ----
|
||
rateLimit:
|
||
# IP访问间隔(分钟),防刷
|
||
ipExpire: 1
|
||
|
||
# ---- Token配置 ----
|
||
token:
|
||
# 加密密钥(务必修改为随机字符串)
|
||
value: 1
|
||
# Token过期天数
|
||
expire: 14
|
||
|
||
# ---- 开放API配置 ----
|
||
openapi:
|
||
# OPEN API签名密钥(务必修改)
|
||
secret: your_openapi_secret_key_here
|
||
|
||
# ---- 二维码配置 ----
|
||
# 每个金额的二维码数量
|
||
qrCodeNum: 2
|
||
|
||
# ---- 减额匹配配置 ----
|
||
decrement:
|
||
# 是否启用减额匹配模式
|
||
enabled: true
|
||
# 最大减额槽位数 可改可不改
|
||
maxCount: 2
|
||
# 减额步长(元)可改可不改,改了要对应二维码金额
|
||
step: 0.01
|
||
|
||
# ---- 产品配置 ----
|
||
# 所有产品在此定义,修改后重启生效
|
||
products:
|
||
- id: 1
|
||
product-name: "实例产品,演示效果"
|
||
money: "5.00"
|
||
description: ""
|
||
type: "CODE"
|
||
extend: ""
|
||
download-url: "https://www.baidu.com"
|
||
# 更多产品模板:
|
||
# - id: 2
|
||
# product-name: "游戏礼包"
|
||
# money: "10.00"
|
||
# description: "包含100金币+10钻石"
|
||
# type: "GAME"
|
||
# extend: ""
|
||
# download-url: ""
|
||
|
||
# ---- 支付方式(一般不需要调整) ----
|
||
payMethods:
|
||
- id: 'alipay'
|
||
name: '支付宝支付'
|
||
description: '免输备注,手动收款'
|
||
icon: '🔵'
|
||
status: true
|
||
allow-night: false
|
||
use-local-qr-code: false
|
||
- id: 'wechat'
|
||
name: '微信支付'
|
||
description: '需备注,自动确认收款'
|
||
icon: '🟢'
|
||
status: true
|
||
allow-night: true
|
||
use-local-qr-code: true
|
||
- id: 'wechat_zs'
|
||
name: '微信赞赏码支付'
|
||
description: '需备注,自动确认收款'
|
||
icon: '🟢'
|
||
status: true
|
||
allow-night: false
|
||
use-local-qr-code: true
|
||
- id: 'alipay_dmf'
|
||
name: '支付宝当面付'
|
||
description: '支付宝官方产品,无需营业执照,免备注自动收款'
|
||
icon: '🔵'
|
||
status: true
|
||
allow-night: true
|
||
use-local-qr-code: false
|