mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
alive check for nginx
This commit is contained in:
parent
29f0a2aa12
commit
bba0206bb7
@ -5,6 +5,7 @@ LABEL com.bitwarden.product="bitwarden"
|
|||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y --no-install-recommends \
|
&& apt-get install -y --no-install-recommends \
|
||||||
gosu \
|
gosu \
|
||||||
|
curl \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
COPY nginx.conf /etc/nginx
|
COPY nginx.conf /etc/nginx
|
||||||
@ -19,4 +20,6 @@ EXPOSE 8443
|
|||||||
|
|
||||||
RUN chmod +x /entrypoint.sh
|
RUN chmod +x /entrypoint.sh
|
||||||
|
|
||||||
|
HEALTHCHECK curl -L -f http://localhost/alive || exit 1
|
||||||
|
|
||||||
ENTRYPOINT ["/entrypoint.sh"]
|
ENTRYPOINT ["/entrypoint.sh"]
|
||||||
|
@ -69,6 +69,11 @@ server {
|
|||||||
add_header X-Robots-Tag "noindex, nofollow";
|
add_header X-Robots-Tag "noindex, nofollow";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
location /alive {
|
||||||
|
return 200 'alive';
|
||||||
|
add_header Content-Type text/plain;
|
||||||
|
}
|
||||||
|
|
||||||
location = /app-id.json {
|
location = /app-id.json {
|
||||||
proxy_pass http://web:5000/app-id.json;
|
proxy_pass http://web:5000/app-id.json;
|
||||||
{{#if Ssl}}
|
{{#if Ssl}}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user