14 lines
331 B
Plaintext
14 lines
331 B
Plaintext
# ⒸAngelaMos | 2025
|
|
# Shared HTTP configuration for both dev and prod
|
|
# This file contains common upstream definitions
|
|
|
|
# Upstream backend (FastAPI) - used in both dev and prod
|
|
upstream backend {
|
|
server backend:8000;
|
|
}
|
|
|
|
# Upstream frontend (Vite dev server) - only used in dev
|
|
upstream frontend {
|
|
server frontend:5173;
|
|
}
|