parent
3d7e4766f7
commit
8ea805e4e3
|
@ -1,62 +1,57 @@
|
||||||
twilio: # Twilio SMS gateway configuration
|
twilio: # Twilio gateway configuration
|
||||||
accountId:
|
accountId:
|
||||||
accountToken:
|
accountToken:
|
||||||
numbers:
|
numbers: # Numbers allocated in Twilio
|
||||||
localDomain: # The domain Twilio can call back to.
|
- # First number
|
||||||
|
- # Second number
|
||||||
|
- # Third number
|
||||||
|
- # ...
|
||||||
|
- # Nth number
|
||||||
|
messagingServicesId:
|
||||||
|
localDomain: # Domain Twilio can connect back to for calls. Should be domain of your service.
|
||||||
|
|
||||||
push: # GCM/APN push server configuration
|
push:
|
||||||
host:
|
queueSize: # Size of push pending queue
|
||||||
port:
|
|
||||||
username:
|
redphone:
|
||||||
|
authKey: # Deprecated
|
||||||
|
|
||||||
|
turn: # TURN server configuration
|
||||||
|
secret: # TURN server secret
|
||||||
|
uris:
|
||||||
|
- stun:yourdomain:80
|
||||||
|
- stun:yourdomain.com:443
|
||||||
|
- turn:yourdomain:443?transport=udp
|
||||||
|
- turn:etc.com:80?transport=udp
|
||||||
|
|
||||||
|
cache: # Redis server configuration for cache cluster
|
||||||
|
url:
|
||||||
|
|
||||||
|
directory: # Redis server configuration for directory cluster
|
||||||
|
url:
|
||||||
|
|
||||||
|
messageStore: # Postgresql database configuration for message store
|
||||||
|
driverClass: org.postgresql.Driver
|
||||||
|
user:
|
||||||
password:
|
password:
|
||||||
|
url:
|
||||||
|
|
||||||
s3: # AWS S3 configuration
|
s3: # AWS S3 configuration
|
||||||
accessKey:
|
accessKey:
|
||||||
accessSecret:
|
accessSecret:
|
||||||
|
|
||||||
# Name of the S3 bucket (needs to have been created)
|
|
||||||
# for attachments to go. Should be configured with
|
|
||||||
# correct permissions.
|
|
||||||
attachmentsBucket:
|
attachmentsBucket:
|
||||||
|
|
||||||
directory: # Redis server configuration for TS directory
|
database: # Postgresql database configuration
|
||||||
url:
|
|
||||||
|
|
||||||
cache: # Redis server configuration for general purpose caching
|
|
||||||
url:
|
|
||||||
|
|
||||||
websocket:
|
|
||||||
enabled: true
|
|
||||||
|
|
||||||
messageStore: # Postgres database configuration for message store
|
|
||||||
driverClass: org.postgresql.Driver
|
driverClass: org.postgresql.Driver
|
||||||
user:
|
user:
|
||||||
password:
|
password:
|
||||||
url:
|
url:
|
||||||
|
|
||||||
database: # Postgres database configuration for account store
|
apn: # Apple Push Notifications configuration
|
||||||
# the name of your JDBC driver
|
bundleId:
|
||||||
driverClass: org.postgresql.Driver
|
pushCertificate:
|
||||||
|
pushKey:
|
||||||
# the username
|
|
||||||
user:
|
|
||||||
|
|
||||||
# the password
|
|
||||||
password:
|
|
||||||
|
|
||||||
# the JDBC URL
|
|
||||||
url: jdbc:postgresql://somehost:somport/somedb
|
|
||||||
|
|
||||||
# any properties specific to your JDBC driver:
|
|
||||||
properties:
|
|
||||||
charSet: UTF-8
|
|
||||||
|
|
||||||
federation:
|
|
||||||
name:
|
|
||||||
peers:
|
|
||||||
-
|
|
||||||
name: somepeer
|
|
||||||
url: https://foo.com
|
|
||||||
authenticationToken: foo
|
|
||||||
certificate: in pem format
|
|
||||||
|
|
||||||
|
gcm: # GCM Configuration
|
||||||
|
senderId:
|
||||||
|
apiKey:
|
||||||
|
|
Loading…
Reference in New Issue