mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 23:01:09 +02:00
- Add picture-backend and picture-web to CI Docker build matrix - Add picture services to staging deployment workflow - Add picture-backend to production deployment workflow - Create Dockerfile and docker-entrypoint.sh for picture-web - Fix picture-backend Dockerfile port (3003→3006) and health endpoint - Add picture routes to Caddyfile.staging - Add REPLICATE_API_TOKEN and MANA_CORE_SERVICE_KEY env vars
53 lines
1 KiB
Text
53 lines
1 KiB
Text
# ManaCore Staging Reverse Proxy
|
|
# Deploy to: ~/Caddyfile on staging server (46.224.108.214)
|
|
# Reload with: docker exec caddy caddy reload --config /etc/caddy/Caddyfile
|
|
|
|
# Auth service
|
|
auth.staging.manacore.ai {
|
|
reverse_proxy localhost:3001
|
|
}
|
|
|
|
# Chat
|
|
chat.staging.manacore.ai {
|
|
reverse_proxy localhost:3000
|
|
}
|
|
chat-api.staging.manacore.ai {
|
|
reverse_proxy localhost:3002
|
|
}
|
|
|
|
# ManaCore main
|
|
staging.manacore.ai {
|
|
reverse_proxy localhost:5173
|
|
}
|
|
|
|
# Calendar
|
|
calendar.staging.manacore.ai {
|
|
reverse_proxy localhost:5186
|
|
}
|
|
calendar-api.staging.manacore.ai {
|
|
reverse_proxy localhost:3016
|
|
}
|
|
|
|
# Clock
|
|
clock.staging.manacore.ai {
|
|
reverse_proxy localhost:5187
|
|
}
|
|
clock-api.staging.manacore.ai {
|
|
reverse_proxy localhost:3017
|
|
}
|
|
|
|
# Todo
|
|
todo.staging.manacore.ai {
|
|
reverse_proxy localhost:5188
|
|
}
|
|
todo-api.staging.manacore.ai {
|
|
reverse_proxy localhost:3018
|
|
}
|
|
|
|
# Picture
|
|
picture.staging.manacore.ai {
|
|
reverse_proxy localhost:5175
|
|
}
|
|
picture-api.staging.manacore.ai {
|
|
reverse_proxy localhost:3006
|
|
}
|