feat: 完成sys模块迁移,对齐PHP/Java框架
- 重构sys模块架构,严格按admin/api/core分层 - 对齐所有sys实体与数据库表结构 - 实现完整的adminapi控制器,匹配PHP/Java契约 - 修复依赖注入问题,确保服务正确注册 - 添加自动迁移工具和契约验证 - 完善多租户支持和审计功能 - 统一命名规范,与PHP业务逻辑保持一致
This commit is contained in:
26
tools/deploy/kong/docker-compose.yml
Normal file
26
tools/deploy/kong/docker-compose.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
version: '3.8'
|
||||
services:
|
||||
kong:
|
||||
image: kong:3.6
|
||||
environment:
|
||||
KONG_DATABASE: 'off'
|
||||
KONG_DECLARATIVE_CONFIG: /kong/declarative/kong.yaml
|
||||
KONG_PROXY_LISTEN: '0.0.0.0:8000, 0.0.0.0:8443 ssl'
|
||||
KONG_ADMIN_LISTEN: '0.0.0.0:8001, 0.0.0.0:8444 ssl'
|
||||
KONG_LOG_LEVEL: info
|
||||
volumes:
|
||||
- ./kong.yaml:/kong/declarative/kong.yaml:ro
|
||||
ports:
|
||||
- '8000:8000'
|
||||
- '8443:8443'
|
||||
- '8001:8001'
|
||||
- '8444:8444'
|
||||
|
||||
konga:
|
||||
image: pantsel/konga:latest
|
||||
environment:
|
||||
NODE_ENV: production
|
||||
ports:
|
||||
- '1337:1337'
|
||||
depends_on:
|
||||
- kong
|
||||
Reference in New Issue
Block a user