Skip to content

Commit

Permalink
add typos
Browse files Browse the repository at this point in the history
  • Loading branch information
lemmav committed Jun 7, 2024
1 parent 46a8491 commit b418023
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion install/docker/Dockerfile.app
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ RUN apt-get -y update && \
rm -rf /var/lib/apt/lists/*

ADD https://api.github.com/repos/ONLYOFFICE/DocSpace-buildtools/git/refs/heads/${GIT_BRANCH} version.json
RUN git clone -b ${GIT_BRANCH} https://github.com/ONLYOFFICE/DocSpace-buildtools.git ${SRC_PATH}/buildtools && \
RUN git clone -b ${GIT_BRANCH} https://github.com/lemmav/DocSpace-buildtools.git ${SRC_PATH}/buildtools && \
git clone --recurse-submodules -b ${GIT_BRANCH} https://github.com/ONLYOFFICE/DocSpace-Server.git ${SRC_PATH}/server && \
git clone -b ${GIT_BRANCH} https://github.com/ONLYOFFICE/DocSpace-Client.git ${SRC_PATH}/client && \
git clone -b "master" --depth 1 https://github.com/ONLYOFFICE/ASC.Web.Campaigns.git ${SRC_PATH}/campaigns
Expand Down
12 changes: 12 additions & 0 deletions install/docker/config/nginx/templates/upstream.conf.template
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,24 @@ map $SERVICE_SSOAUTH $service_sso {
default $SERVICE_SSOAUTH;
}

map $SERVICE_SSOAUTH $service_ssoauth {
volatile;
"" 127.0.0.1:9834;
default $SERVICE_SSOAUTH;
}

map $SERVICE_HELTHCHECKS $service_healthchecks {
volatile;
"" 127.0.0.1:5033;
default $SERVICE_HELTHCHECKS;
}

map $SERVICE_HELTHCHECKS $service_helthchecks {
volatile;
"" 127.0.0.1:5033;
default $SERVICE_HELTHCHECKS;
}

map "$DOCUMENT_SERVER_URL_EXTERNAL" "$document_server" {
volatile;
default "$DOCUMENT_SERVER_URL_EXTERNAL";
Expand Down

0 comments on commit b418023

Please sign in to comment.