2026-02-10 09:48:44 +00:00
|
|
|
server:
|
2026-03-12 12:39:49 +00:00
|
|
|
port: 8081
|
2026-02-10 09:48:44 +00:00
|
|
|
|
|
|
|
|
spring:
|
|
|
|
|
datasource:
|
2026-03-17 02:24:50 +00:00
|
|
|
url: jdbc:postgresql://10.100.51.199:5432/imeeting_db
|
2026-02-10 09:48:44 +00:00
|
|
|
username: postgres
|
2026-03-02 01:09:53 +00:00
|
|
|
password: postgres
|
2026-02-10 09:48:44 +00:00
|
|
|
data:
|
|
|
|
|
redis:
|
2026-03-17 02:24:50 +00:00
|
|
|
host: 10.100.51.199
|
2026-02-10 09:48:44 +00:00
|
|
|
port: 6379
|
2026-03-02 01:09:53 +00:00
|
|
|
password: unis@123
|
2026-02-11 05:44:31 +00:00
|
|
|
database: 15
|
2026-02-11 07:44:49 +00:00
|
|
|
cache:
|
|
|
|
|
type: redis
|
2026-03-02 11:59:47 +00:00
|
|
|
servlet:
|
|
|
|
|
multipart:
|
2026-03-04 07:19:40 +00:00
|
|
|
max-file-size: 2048MB
|
|
|
|
|
max-request-size: 2048MB
|
2026-03-02 11:59:47 +00:00
|
|
|
|
|
|
|
|
jackson:
|
|
|
|
|
date-format: yyyy-MM-dd HH:mm:ss
|
|
|
|
|
serialization:
|
|
|
|
|
write-dates-as-timestamps: false
|
|
|
|
|
time-zone: GMT+8
|
2026-02-10 09:48:44 +00:00
|
|
|
|
|
|
|
|
mybatis-plus:
|
|
|
|
|
configuration:
|
|
|
|
|
map-underscore-to-camel-case: true
|
2026-02-13 03:06:36 +00:00
|
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
2026-02-12 02:41:59 +00:00
|
|
|
global-config:
|
|
|
|
|
db-config:
|
|
|
|
|
logic-delete-field: isDeleted
|
|
|
|
|
logic-delete-value: 1
|
|
|
|
|
logic-not-delete-value: 0
|
2026-02-10 09:48:44 +00:00
|
|
|
|
2026-03-17 07:31:09 +00:00
|
|
|
unisbase:
|
|
|
|
|
web:
|
|
|
|
|
auth-endpoints-enabled: true
|
|
|
|
|
management-endpoints-enabled: true
|
|
|
|
|
tenant:
|
|
|
|
|
ignoreTables:
|
|
|
|
|
- biz_ai_tasks
|
|
|
|
|
- biz_meeting_transcripts
|
|
|
|
|
- biz_speakers
|
|
|
|
|
security:
|
|
|
|
|
enabled: true
|
|
|
|
|
mode: embedded
|
|
|
|
|
jwt-secret: change-me-please-change-me-32bytes
|
|
|
|
|
auth-header: Authorization
|
|
|
|
|
token-prefix: "Bearer "
|
|
|
|
|
permit-all-urls:
|
|
|
|
|
- /actuator/health
|
|
|
|
|
- /api/static/**
|
|
|
|
|
internal-auth:
|
|
|
|
|
enabled: true
|
|
|
|
|
secret: change-me-internal-secret
|
|
|
|
|
header-name: X-Internal-Secret
|
|
|
|
|
app:
|
|
|
|
|
server-base-url: http://10.100.52.13:${server.port} # 本地应用对外暴露的 IP 和端口
|
|
|
|
|
upload-path: D:/data/imeeting/uploads/
|
|
|
|
|
resource-prefix: /api/static/
|
|
|
|
|
captcha:
|
|
|
|
|
ttl-seconds: 120
|
|
|
|
|
max-attempts: 5
|
|
|
|
|
token:
|
|
|
|
|
access-default-minutes: 30
|
|
|
|
|
refresh-default-days: 7
|