mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-09-12 17:46:36 +08:00
feat(talk): add SKIP_CERT_VERIFY env
This environment variable when set to "true" will allow usage of self-signed certificates. Signed-off-by: Anupam Kumar <kyteinsky@gmail.com> Signed-off-by: Simon L. <szaimen@e.mail.de>
This commit is contained in:
parent
3719a89e0e
commit
1b3e519cd7
2 changed files with 2 additions and 0 deletions
|
@ -37,6 +37,7 @@ RUN set -ex; \
|
||||||
|
|
||||||
FROM alpine:3.21.3
|
FROM alpine:3.21.3
|
||||||
ENV ETURNAL_ETC_DIR="/conf"
|
ENV ETURNAL_ETC_DIR="/conf"
|
||||||
|
ENV SKIP_CERT_VERIFY=false
|
||||||
COPY --from=janus --chmod=777 --chown=1000:1000 /usr/local /usr/local
|
COPY --from=janus --chmod=777 --chown=1000:1000 /usr/local /usr/local
|
||||||
COPY --from=eturnal --chmod=777 --chown=1000:1000 /opt/eturnal /opt/eturnal
|
COPY --from=eturnal --chmod=777 --chown=1000:1000 /opt/eturnal /opt/eturnal
|
||||||
COPY --from=nats --chmod=777 --chown=1000:1000 /nats-server /usr/local/bin/nats-server
|
COPY --from=nats --chmod=777 --chown=1000:1000 /nats-server /usr/local/bin/nats-server
|
||||||
|
|
|
@ -95,6 +95,7 @@ backends = backend-1
|
||||||
allowall = false
|
allowall = false
|
||||||
timeout = 10
|
timeout = 10
|
||||||
connectionsperhost = 8
|
connectionsperhost = 8
|
||||||
|
skipverify = ${SKIP_CERT_VERIFY}
|
||||||
|
|
||||||
[backend-1]
|
[backend-1]
|
||||||
url = https://${NC_DOMAIN}
|
url = https://${NC_DOMAIN}
|
||||||
|
|
Loading…
Add table
Reference in a new issue