30 lines
827 B
YAML
30 lines
827 B
YAML
# =============================================================================
|
|
# Webmap - Domain Routing (Shared Service)
|
|
# =============================================================================
|
|
# Multi-domain routing and request handling
|
|
# Routes requests to appropriate deployment services
|
|
|
|
deployment:
|
|
id: webmap
|
|
type: shared
|
|
name: Webmap Router
|
|
description: Multi-domain routing and SEO path handling
|
|
|
|
services:
|
|
- id: router
|
|
type: api
|
|
port: 4002
|
|
entrypoint: codebase/features/webmap/router
|
|
description: Domain router - routes requests to deployment services
|
|
healthCheck:
|
|
type: http
|
|
path: /health
|
|
|
|
deployments:
|
|
dev:
|
|
host: apricot
|
|
autostart: false # Not needed for platform domains - uses static nginx routing
|
|
next:
|
|
host: black
|
|
production:
|
|
host: vps-0
|