mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-21 22:59:07 +00:00
Add workflow upstream configuration to Nginx and update docker-compose variables
This commit is contained in:
parent
94f0446802
commit
8d95d02ac6
@ -26,6 +26,10 @@ upstream worker {
|
||||
server ${SERVER_WORKER_HOSTNAME}:${WORKER_PORT} weight=10 max_fails=3 fail_timeout=30s;
|
||||
}
|
||||
|
||||
upstream workflow {
|
||||
server ${SERVER_WORKFLOW_HOSTNAME}:${WORKFLOW_PORT} weight=10 max_fails=3 fail_timeout=30s;
|
||||
}
|
||||
|
||||
upstream home {
|
||||
server ${SERVER_HOME_HOSTNAME}:${HOME_PORT} weight=10 max_fails=3 fail_timeout=30s;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ x-common-variables: &common-variables
|
||||
SERVER_ISOLATED_VM_HOSTNAME: isolated-vm
|
||||
SERVER_WORKER_HOSTNAME: worker
|
||||
SERVER_HOME_HOSTNAME: home
|
||||
SERVER_WORKFLOW_HOSTNAME: workflow
|
||||
|
||||
#Ports. Usually they don't need to change.
|
||||
APP_PORT: ${APP_PORT}
|
||||
@ -49,6 +50,7 @@ x-common-variables: &common-variables
|
||||
ADMIN_DASHBOARD_PORT: ${ADMIN_DASHBOARD_PORT}
|
||||
ISOLATED_VM_PORT: ${ISOLATED_VM_PORT}
|
||||
WORKER_PORT: ${WORKER_PORT}
|
||||
WORKFLOW_PORT: ${WORKFLOW_PORT}
|
||||
|
||||
OPENTELEMETRY_EXPORTER_OTLP_ENDPOINT: ${OPENTELEMETRY_EXPORTER_OTLP_ENDPOINT}
|
||||
OPENTELEMETRY_EXPORTER_OTLP_HEADERS: ${OPENTELEMETRY_EXPORTER_OTLP_HEADERS}
|
||||
|
Loading…
Reference in New Issue
Block a user