parent
0c58e21d77
commit
19915e8c21
@ -0,0 +1 @@
|
||||
# nginx conf files
|
@ -0,0 +1,25 @@
|
||||
upstream minio_s3 {
|
||||
server ${DOCKER_BRIDGE_GATEWAY}:${MINIO_PORT};
|
||||
}
|
||||
upstream im_web_front {
|
||||
server ${DOCKER_BRIDGE_GATEWAY}:${OPENIM_WEB_PORT};
|
||||
}
|
||||
upstream im_admin_front {
|
||||
server ${DOCKER_BRIDGE_GATEWAY}:${OPENIM_ADMIN_FRONT_PORT};
|
||||
}
|
||||
|
||||
upstream im_msg_gateway {
|
||||
server ${DOCKER_BRIDGE_GATEWAY}:${OPENIM_WS_PORT};
|
||||
}
|
||||
|
||||
upstream im_api {
|
||||
server ${DOCKER_BRIDGE_GATEWAY}:${API_OPENIM_PORT};
|
||||
}
|
||||
|
||||
upstream im_chat_api {
|
||||
server ${DOCKER_BRIDGE_GATEWAY}:${OPENIM_CHAT_API_PORT};
|
||||
}
|
||||
|
||||
upstream im_admin_api {
|
||||
server ${DOCKER_BRIDGE_GATEWAY}:${OPENIM_ADMIN_API_PORT};
|
||||
}
|
Loading…
Reference in new issue