mirror of
https://github.com/ArcticFoxes-net/Coturn-Docker-Compose
synced 2024-11-08 13:31:34 -05:00
850 B
850 B
Coturn-Docker-Compose
Coturn Docker-Compose for Matrix Synapse
- Start the ACME daemon:
docker-compose up -d acme
. - Register an account ZeroSSL:
docker exec acme --register-account -m email@domain.tld
. - Generate the certificate:
docker exec acme --issue -d turn.yourdomain.tld --standalone
. - Copy the certificates to the correct location:
docker exec acme --install-cert -d turn.yourdomain.tld --fullchain-file /ssl/fullchain.pem --key-file /ssl/privkey.pem
. - Set
65534:65534
to own the certificates:chown -R 65534:65534 ./ssl
- Edit
coturn/turnserver.conf
approprieately. At minimum, you should changerealm
to your TURN server's hostname and set your ownstatic-auth-secret
. - Run
docker-compose up
and make sure nothing errors out. You can usedocker-compose up -d
to start it in the background if you want.