-
Notifications
You must be signed in to change notification settings - Fork 16
/
mediaserver.properties.example
48 lines (38 loc) · 1.43 KB
/
mediaserver.properties.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# CACHE
cache.max.age=86400
# HTTP
http.port=8080
http.tests.port=9090
http.endpoint=https://api.buddycloud.org/media-proxy
https.port=8443
https.enabled=false
https.keystore.path=/usr/share/buddycloud-media-server/jetty.jks
https.keystore.type=JKS
https.keystore.password=password
https.key.password=password
# XMPP
xmpp.component.host=localhost
xmpp.component.port=5275
xmpp.component.subdomain=mediaserver.example.com
xmpp.component.secretkey=secret
xmpp.connection.password=mediaserver-test
xmpp.connection.host=crater.buddycloud.org
xmpp.connection.port=5222
xmpp.connection.servicename=buddycloud.org
# Whether the client will use SASL authentication when logging into the server (true|false).
xmpp.connection.saslenabled=true
# TLS security mode used when making the connection (disabled|enabled|required).
xmpp.connection.securitymode=enabled
# How much time it will wait for a response to an XMPP request (in milliseconds)
xmpp.reply.timeout=30000
# JDBC
jdbc.db.url=jdbc:postgresql://localhost:5432/#DATABASE_NAME#?user=#DATABASE_USER#&password=#DATABASE_PASSWORD#
jdbc.driver.class=org.postgresql.Driver
# File System
media.storage.root=/usr/share/buddycloud-media-server/storage
# Max threshold beyond which files are written directly to disk, in bytes
# Only used while uploading multipart form data files
media.todisk.threshold=1048576
# Max filesize in bytes
media.sizelimit=100000000