forked from Deuxfleurs/infrastructure
jicofo seems to work
This commit is contained in:
parent
cef60898b5
commit
51b656e937
4 changed files with 7 additions and 1 deletions
|
@ -7,6 +7,7 @@ services:
|
|||
- "5347:5347"
|
||||
- "5280:5280"
|
||||
env_file: [ 'dev.env' ]
|
||||
volumes: [ './jitsi-certs/:/certs:ro' ]
|
||||
jitsi-front:
|
||||
build: ./jitsi-front
|
||||
ports:
|
||||
|
@ -15,3 +16,4 @@ services:
|
|||
jitsi-conference-focus:
|
||||
build: ./jitsi-conference-focus
|
||||
env_file: [ 'dev.env' ]
|
||||
volumes: [ './jitsi-certs/:/certs:ro' ]
|
||||
|
|
|
@ -14,7 +14,7 @@ RUN cd jicofo && \
|
|||
FROM debian:buster
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y openjdk-11-jdk
|
||||
apt-get install -y openjdk-11-jdk ca-certificates
|
||||
|
||||
COPY --from=builder /srv/jicofo /srv/jicofo
|
||||
COPY jicofo /usr/local/bin/jicofo
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
cp ${JITSI_CERTS_FOLDER}/auth.jitsi.deuxfleurs.fr.crt /usr/local/share/ca-certificates/auth.jitsi.deuxfleurs.fr.crt
|
||||
update-ca-certificates -f
|
||||
|
||||
/srv/jicofo/jicofo.sh \
|
||||
--host=${JITSI_PROSODY_HOST} \
|
||||
--domain=jitsi.deuxfleurs.fr \
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
/usr/local/bin/xmpp_conf
|
||||
cp ${JITSI_CERTS_FOLDER}/* /var/lib/prosody/
|
||||
chown -R prosody:prosody /var/lib/prosody
|
||||
|
||||
mkdir -p /usr/local/share/ca-certificates/
|
||||
ln -sf \
|
||||
|
|
Loading…
Reference in a new issue