Update public/v4/apps/matrix-conduwuit.yml
This commit is contained in:
parent
c5dda3560c
commit
18fb42144d
1 changed files with 15 additions and 5 deletions
|
@ -4,16 +4,21 @@ services:
|
||||||
image: girlbossceo/conduwuit:$$cap_conduwuit_version
|
image: girlbossceo/conduwuit:$$cap_conduwuit_version
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
|
CONDUWUIT_ADDRESS: 0.0.0.0
|
||||||
|
CONDUWUIT_PORT: 6167
|
||||||
CONDUWUIT_SERVER_NAME: '$$cap_conduwuit_server_name'
|
CONDUWUIT_SERVER_NAME: '$$cap_conduwuit_server_name'
|
||||||
CONDUWUIT_DATABASE_BACKEND: 'rocksdb'
|
CONDUWUIT_DATABASE_PATH: '/var/lib/conduwuit'
|
||||||
CONDUWUIT_ALLOW_REGISTRATION: '$$cap_conduwuit_allow_registration'
|
CONDUWUIT_ALLOW_REGISTRATION: '$$cap_conduwuit_allow_registration'
|
||||||
CONDUWUIT_ALLOW_FEDERATION: '$$cap_conduwuit_allow_federation'
|
CONDUWUIT_ALLOW_FEDERATION: '$$cap_conduwuit_allow_federation'
|
||||||
|
CONDUWUIT_ALLOW_CHECK_FOR_UPDATES: 'true'
|
||||||
CONDUWUIT_MAX_REQUEST_SIZE: '$$cap_conduwuit_max_request_size'
|
CONDUWUIT_MAX_REQUEST_SIZE: '$$cap_conduwuit_max_request_size'
|
||||||
CONDUWUIT_TRUSTED_SERVERS: '["matrix.org"]'
|
CONDUWUIT_TRUSTED_SERVERS: '["matrix.org"]'
|
||||||
CONDUWUIT_MAX_CONCURRENT_REQUESTS: '$$cap_conduwuit_max_concurrent_requests'
|
CONDUWUIT_MAX_CONCURRENT_REQUESTS: '$$cap_conduwuit_max_concurrent_requests'
|
||||||
CONDUWUIT_LOG: 'info,rocket=off,_=off,sled=off'
|
CONDUWUIT_LOG: warn,state_res=warn
|
||||||
volumes:
|
volumes:
|
||||||
- '$$cap_appname-data:/var/lib/conduwuit'
|
- '$$cap_appname-data:/var/lib/conduwuit'
|
||||||
|
ports:
|
||||||
|
- '$$cap_conduwuit_external_port:6167'
|
||||||
caproverExtra:
|
caproverExtra:
|
||||||
containerHttpPort: '6167'
|
containerHttpPort: '6167'
|
||||||
|
|
||||||
|
@ -22,8 +27,13 @@ caproverOneClickApp:
|
||||||
- id: '$$cap_conduwuit_version'
|
- id: '$$cap_conduwuit_version'
|
||||||
label: conduwuit Version
|
label: conduwuit Version
|
||||||
defaultValue: 'latest'
|
defaultValue: 'latest'
|
||||||
description: It's probably latest
|
description: "It's probably latest"
|
||||||
validRegex: '/^v[0-9]{1,}|latest$/'
|
validRegex: '/^v[0-9]{1,}|latest$/'
|
||||||
|
- id: '$$cap_conduwuit_external_port'
|
||||||
|
label: conduwuit external port
|
||||||
|
defaultValue: '8448'
|
||||||
|
description: "Apparently listening on 8448 is required?"
|
||||||
|
validRegex: '/^[0-9]{1,}$/'
|
||||||
- id: '$$cap_conduwuit_server_name'
|
- id: '$$cap_conduwuit_server_name'
|
||||||
label: 'conduwuit server name'
|
label: 'conduwuit server name'
|
||||||
defaultValue: 'example.com'
|
defaultValue: 'example.com'
|
||||||
|
@ -85,5 +95,5 @@ caproverOneClickApp:
|
||||||
|
|
||||||
displayName: 'conduwuit'
|
displayName: 'conduwuit'
|
||||||
isOfficial: false
|
isOfficial: false
|
||||||
description: 'Server for the matrix protocol, written in Rust, forked by literal queer dogs'
|
description: 'Server for the matrix protocol, written in Rust'
|
||||||
documentation: 'https://gitlab.com/famedly/conduit/-/blob/next/README.md'
|
documentation: 'https://conduwuit.puppyirl.gay/introduction.html'
|
Loading…
Reference in a new issue