mirror of
https://github.com/girlbossceo/conduwuit.git
synced 2024-11-25 22:48:34 +00:00
55 lines
2.1 KiB
YAML
55 lines
2.1 KiB
YAML
services:
|
|
caddy:
|
|
# This compose file uses caddy-docker-proxy as the reverse proxy for conduwuit!
|
|
# For more info, visit https://github.com/lucaslorentz/caddy-docker-proxy
|
|
image: lucaslorentz/caddy-docker-proxy:ci-alpine
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
environment:
|
|
- CADDY_INGRESS_NETWORKS=caddy
|
|
networks:
|
|
- caddy
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- ./data:/data
|
|
restart: unless-stopped
|
|
labels:
|
|
caddy: example.com
|
|
caddy.0_respond: /.well-known/matrix/server {"m.server":"matrix.example.com:443"}
|
|
caddy.1_respond: /.well-known/matrix/client {"m.server":{"base_url":"https://matrix.example.com"},"m.homeserver":{"base_url":"https://matrix.example.com"},"org.matrix.msc3575.proxy":{"url":"https://matrix.example.com"}}
|
|
|
|
homeserver:
|
|
### If you already built the conduwuit image with 'docker build' or want to use a registry image,
|
|
### then you are ready to go.
|
|
image: girlbossceo/conduwuit:latest
|
|
restart: unless-stopped
|
|
volumes:
|
|
- db:/var/lib/conduwuit
|
|
#- ./conduwuit.toml:/etc/conduwuit.toml
|
|
environment:
|
|
CONDUWUIT_SERVER_NAME: example.com # EDIT THIS
|
|
CONDUWUIT_DATABASE_PATH: /var/lib/conduwuit
|
|
CONDUWUIT_DATABASE_BACKEND: rocksdb
|
|
CONDUWUIT_PORT: 6167
|
|
CONDUWUIT_MAX_REQUEST_SIZE: 20_000_000 # in bytes, ~20 MB
|
|
CONDUWUIT_ALLOW_REGISTRATION: 'true'
|
|
CONDUWUIT_ALLOW_FEDERATION: 'true'
|
|
CONDUWUIT_ALLOW_CHECK_FOR_UPDATES: 'true'
|
|
CONDUWUIT_TRUSTED_SERVERS: '["matrix.org"]'
|
|
#CONDUWUIT_LOG: warn,state_res=warn
|
|
CONDUWUIT_ADDRESS: 0.0.0.0
|
|
#CONDUWUIT_CONFIG: '/etc/conduwuit.toml' # Uncomment if you mapped config toml above
|
|
networks:
|
|
- caddy
|
|
labels:
|
|
caddy: matrix.example.com
|
|
caddy.reverse_proxy: "{{upstreams 6167}}"
|
|
|
|
volumes:
|
|
db:
|
|
|
|
networks:
|
|
caddy:
|
|
external: true
|