parent
424e98e67e
commit
931081752a
|
@ -1,32 +1,16 @@
|
||||||
twilio:
|
twilio: # Twilio SMS gateway configuration
|
||||||
accountId:
|
accountId:
|
||||||
accountToken:
|
accountToken:
|
||||||
number:
|
number:
|
||||||
localDomain: # The domain Twilio can call back to.
|
localDomain: # The domain Twilio can call back to.
|
||||||
international: # Boolean specifying Twilio for international delivery
|
|
||||||
|
|
||||||
# Optional. If specified, Nexmo will be used for non-US SMS and
|
push: # GCM/APN push server configuration
|
||||||
# voice verification if twilio.international is false. Otherwise,
|
host:
|
||||||
# Nexmo, if specified, Nexmo will only be used as a fallback
|
port:
|
||||||
# for failed Twilio deliveries.
|
username:
|
||||||
nexmo:
|
password:
|
||||||
apiKey:
|
|
||||||
apiSecret:
|
|
||||||
number:
|
|
||||||
|
|
||||||
gcm:
|
s3: # AWS S3 configuration
|
||||||
senderId:
|
|
||||||
apiKey:
|
|
||||||
|
|
||||||
# Optional. Only if iOS clients are supported.
|
|
||||||
apn:
|
|
||||||
# In PEM format.
|
|
||||||
certificate:
|
|
||||||
|
|
||||||
# In PEM format.
|
|
||||||
key:
|
|
||||||
|
|
||||||
s3:
|
|
||||||
accessKey:
|
accessKey:
|
||||||
accessSecret:
|
accessSecret:
|
||||||
|
|
||||||
|
@ -35,13 +19,37 @@ s3:
|
||||||
# correct permissions.
|
# correct permissions.
|
||||||
attachmentsBucket:
|
attachmentsBucket:
|
||||||
|
|
||||||
memcache:
|
directory: # Redis server configuration for TS directory
|
||||||
servers:
|
url:
|
||||||
user:
|
|
||||||
password:
|
|
||||||
|
|
||||||
redis:
|
cache: # Redis server configuration for general purpose caching
|
||||||
url:
|
url:
|
||||||
|
|
||||||
|
websocket:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
|
messageStore: # Postgres database configuration for message store
|
||||||
|
driverClass: org.postgresql.Driver
|
||||||
|
user:
|
||||||
|
password:
|
||||||
|
url:
|
||||||
|
|
||||||
|
database: # Postgres database configuration for account store
|
||||||
|
# the name of your JDBC driver
|
||||||
|
driverClass: org.postgresql.Driver
|
||||||
|
|
||||||
|
# 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:
|
federation:
|
||||||
name:
|
name:
|
||||||
|
@ -52,24 +60,3 @@ federation:
|
||||||
authenticationToken: foo
|
authenticationToken: foo
|
||||||
certificate: in pem format
|
certificate: in pem format
|
||||||
|
|
||||||
# Optional address of graphite server to report metrics
|
|
||||||
graphite:
|
|
||||||
host:
|
|
||||||
port:
|
|
||||||
|
|
||||||
database:
|
|
||||||
# the name of your JDBC driver
|
|
||||||
driverClass: org.postgresql.Driver
|
|
||||||
|
|
||||||
# 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
|
|
||||||
|
|
Loading…
Reference in New Issue