Advertisement
Guest User

Untitled

a guest
Sep 26th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. emailsender:
  2. emailDir: /Users/roshinic/EmailAuto/emails
  3. smtpServer: outlook.office365.com
  4. smtpPort: 587
  5. emailUser: [ 'roshini@rmollc.com' ]
  6. emailPassword: xxxxxxxx
  7.  
  8.  
  9. #Thread Pool
  10. threadPool:
  11. corePoolSize: 20
  12. maxPoolSize: 20
  13.  
  14.  
  15. # HTTP-specific options.
  16. server:
  17. # softNofileLimit: 1000
  18. # hardNofileLimit: 1000
  19. applicationConnectors:
  20. - type: http
  21. port: 9080
  22. # - type: https
  23. # port: 8443
  24. # keyStorePath: example.keystore
  25. # keyStorePassword: example
  26. # validateCerts: false
  27. # this requires the alpn-boot library on the JVM's boot classpath
  28. # - type: spdy3
  29. # port: 8445
  30. # keyStorePath: example.keystore
  31. # keyStorePassword: example
  32. # validateCerts: false
  33. adminConnectors:
  34. - type: http
  35. port: 9081
  36. # - type: https
  37. # port: 8444
  38. # keyStorePath: example.keystore
  39. # keyStorePassword: example
  40. # validateCerts: false
  41. requestLog:
  42. appenders:
  43. - type: console
  44. - type: file
  45. archive: true
  46. archivedFileCount: 5
  47. currentLogFilename: ./logs/request.log
  48. archivedLogFilenamePattern: /var/test/http-test-%d.log
  49. timeZone: UTC
  50.  
  51.  
  52. # Logging settings.
  53. logging:
  54.  
  55. # The default level of all loggers. Can be OFF, ERROR, WARN, INFO, DEBUG, TRACE, or ALL.
  56. level: INFO
  57.  
  58. # Logger-specific levels.
  59. loggers:
  60. level: ALL
  61. # Sets the level
  62. com.rmo: ALL
  63. io.dropwizard: ALL
  64. javax.mail: ALL
  65.  
  66. appenders:
  67. - type: console
  68. threshold: ALL
  69. target: stderr
  70.  
  71. - type: file
  72. # The file to which current statements will be logged.
  73. currentLogFilename: ./logs/automator.log
  74.  
  75. # When the log file rotates, the archived log will be renamed to this and gzipped. The
  76. # %d is replaced with the previous day (yyyy-MM-dd). Custom rolling windows can be created
  77. # by passing a SimpleDateFormat-compatible format as an argument: "%d{yyyy-MM-dd-hh}".
  78. archivedLogFilenamePattern: ./logs/automator-%d.log.gz
  79.  
  80. # The number of archived files to keep.
  81. archivedFileCount: 5
  82.  
  83. # The timezone used to format dates. HINT: USE THE DEFAULT, UTC.
  84. timeZone: UTC
  85.  
  86. - type: syslog
  87. # The hostname of the syslog server to which statements will be sent.
  88. # N.B.: If this is the local host, the local syslog instance will need to be configured to
  89. # listen on an inet socket, not just a Unix socket.
  90. host: localhost
  91.  
  92. # The syslog facility to which statements will be sent.
  93. facility: local0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement