- FastAPI 백엔드 + MongoDB + Redis 구성 - React + Vite + TypeScript + shadcn/ui 프론트엔드 - Apache APISIX API Gateway 통합 - Docker Compose 기반 개발 환경 - 3단계 권한 체계 (System Admin, Group Admin, User) - 동적 테마 지원 - 환경별 설정 (dev/vei/prod) 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
30 lines
473 B
YAML
30 lines
473 B
YAML
conf:
|
|
listen:
|
|
host: 0.0.0.0
|
|
port: 9000
|
|
etcd:
|
|
endpoints:
|
|
- etcd:2379
|
|
prefix: /apisix
|
|
mtls:
|
|
cert: ""
|
|
cert_key: ""
|
|
verify: false
|
|
log:
|
|
error_log:
|
|
level: warn
|
|
file_path: logs/error.log
|
|
access_log:
|
|
file_path: logs/access.log
|
|
|
|
authentication:
|
|
secret: secret
|
|
expire_time: 3600
|
|
users:
|
|
- username: admin
|
|
password: admin123
|
|
- username: user
|
|
password: user123
|
|
|
|
oidc:
|
|
enabled: false |