Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2015
501
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.72 KB | None | 0 0
  1. #
  2. # Let's Chat Settings
  3. #
  4. # See defaults.yml for all available options
  5. #
  6.  
  7. env: production # development / production
  8.  
  9. http:
  10.   enable: true
  11.   host: 'chat.mydomain.com'
  12.   port: 5000
  13.  
  14. https:
  15.   enable: false
  16.   port: 5001
  17.   key: key.pem
  18.   cert: certificate.pem
  19.  
  20. files:
  21.   enable: true
  22.   provider: local
  23.   local:
  24.     dir: uploads
  25.  
  26. xmpp:
  27.   enable: true
  28.   roomCreation: false
  29.   port: 5222
  30.   domain: 'chat.mydomain.com'
  31.   tls:
  32.     enable: true
  33.     key: ./server.key
  34.     cert: ./server.crt
  35.  
  36. database:
  37.   uri: mongodb://localhost/letschat
  38.  
  39. secrets:
  40.   cookie: secretsauce
  41.  
  42. auth:
  43.   providers: [local]
  44.   local:
  45.     enableRegistration: true
  46.     salt: secretsauce # Required when upgrading from version < 0.3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement