summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2024-01-19 20:13:00 +0000
committerAndrew Dolgov <[email protected]>2024-01-19 20:13:00 +0000
commita86df7eac8307b8aa1a253459d8504c7abfa2de4 (patch)
treea353babe3f282ea975d7c34544910610dcc11748
parent283ad4ebea9e93a97848000f38ca91b23ce883ff (diff)
parent03c9d4f3909e0c984e729e8ad54574b628027e7e (diff)
Merge branch 'bugfix/web-nginx-healthcheck' into 'master'
Use APP_BASE in the web-nginx health check URL. See merge request tt-rss/tt-rss!21
-rw-r--r--.docker/web-nginx/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/.docker/web-nginx/Dockerfile b/.docker/web-nginx/Dockerfile
index ab795dd8a..7b1af4e84 100644
--- a/.docker/web-nginx/Dockerfile
+++ b/.docker/web-nginx/Dockerfile
@@ -1,7 +1,7 @@
ARG PROXY_REGISTRY
FROM ${PROXY_REGISTRY}nginx:alpine
-HEALTHCHECK CMD curl --fail http://localhost/tt-rss/index.php || exit 1
+HEALTHCHECK CMD curl --fail http://localhost${APP_BASE}/index.php || exit 1
COPY .docker/web-nginx/nginx.conf /etc/nginx/templates/nginx.conf.template