mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-21 00:28:08 +08:00
Make it possible to use the JWT service with a local homeserver
I recently tried to use the dev configs with a local homeserver and found that the configuration was not compatible with this. We need to relax the network isolation and TLS cert verification requirements for fully local development to be possible.
This commit is contained in:
parent
0fabbabed2
commit
e98740d6f2
@ -7,12 +7,16 @@ services:
|
|||||||
auth-service:
|
auth-service:
|
||||||
image: ghcr.io/element-hq/lk-jwt-service:latest-ci
|
image: ghcr.io/element-hq/lk-jwt-service:latest-ci
|
||||||
hostname: auth-server
|
hostname: auth-server
|
||||||
ports:
|
# Use host network in case the configured homeserver runs on localhost
|
||||||
- 8881:8080
|
network_mode: host
|
||||||
environment:
|
environment:
|
||||||
|
- LK_JWT_PORT=8881
|
||||||
- LIVEKIT_URL=ws://localhost:7880
|
- LIVEKIT_URL=ws://localhost:7880
|
||||||
- LIVEKIT_KEY=devkey
|
- LIVEKIT_KEY=devkey
|
||||||
- LIVEKIT_SECRET=secret
|
- LIVEKIT_SECRET=secret
|
||||||
|
# If the configured homeserver runs on localhost, it'll probably be using
|
||||||
|
# a self-signed certificate
|
||||||
|
- LIVEKIT_INSECURE_SKIP_VERIFY_TLS=YES_I_KNOW_WHAT_I_AM_DOING
|
||||||
deploy:
|
deploy:
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
condition: on-failure
|
||||||
|
Loading…
Reference in New Issue
Block a user