docker/nginx/vhosts/upstream.conf

7 lines
122 B
Plaintext
Raw Normal View History

2025-05-16 16:54:43 +08:00
upstream gatewayService {
server ${GATEWAY_NAME}:9011;
}
2025-05-15 14:21:50 +08:00
2025-05-16 16:54:43 +08:00
upstream airportService {
server ${AIRPORT_NAME}:9060;
}