Advertisement
Guest User

Untitled

a guest
Mar 29th, 2018
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. twilio: # Twilio gateway configuration
  2. accountId:
  3. accountToken:
  4. numbers: # Numbers allocated in Twilio
  5. - # First number
  6. - # Second number
  7. - # Third number
  8. - # ...
  9. - # Nth number
  10. messagingServicesId:
  11. localDomain: # Domain Twilio can connect back to for calls. Should be domain of your service.
  12.  
  13. push:
  14. queueSize: # Size of push pending queue
  15.  
  16. redphone:
  17. authKey: # Deprecated
  18.  
  19. turn: # TURN server configuration
  20. secret: north
  21. uris:
  22. - stun:yourdomain:80
  23. - stun:yourdomain.com:443
  24. - turn:yourdomain:443?transport=udp
  25. - turn:etc.com:80?transport=udp
  26.  
  27. cache: # Redis server configuration for cache cluster
  28. url:
  29.  
  30. directory: # Redis server configuration for directory cluster
  31. url:
  32.  
  33. messageStore: # Postgresql database configuration for message store
  34. driverClass: org.postgresql.Driver
  35. user:
  36. password:
  37. url:
  38.  
  39. attachments: # AWS S3 configuration
  40. accessKey:
  41. accessSecret:
  42. bucket:
  43.  
  44. profiles: # AWS S3 configuration
  45. accessKey:
  46. accessSecret:
  47. bucket:
  48. region:
  49.  
  50. database: # Postgresql database configuration
  51. driverClass: org.postgresql.Driver
  52. user:
  53. password:
  54. url:
  55.  
  56. apn: # Apple Push Notifications configuration
  57. bundleId:
  58. pushCertificate:
  59. pushKey:
  60.  
  61. gcm: # GCM Configuration
  62. senderId:
  63. apiKey:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement