Advertisement
Guest User

Untitled

a guest
Oct 7th, 2016
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. environments:
  2. - production
  3.  
  4. database_names: &database_names
  5. production: deploy_production
  6.  
  7. database.yml:
  8. reconnect: true
  9. database_names:
  10. <<: *database_names
  11. pool: 35
  12. wait_timeout: 8
  13. username: deploy
  14. password: deploypass
  15. host: 10.170.200.8
  16. port: 9714
  17.  
  18. mongoid.yml:
  19. database_names:
  20. <<: *database_names
  21. sessions:
  22. default:
  23. username: deploy
  24. password: deploypass
  25. hosts:
  26. - 127.0.0.1:27017
  27.  
  28. redis.yml:
  29. host: 127.0.0.1
  30. port: 6379
  31.  
  32. features.yml:
  33. alarms: false
  34. contractors: false
  35. field_maintenance: false
  36. opex: false
  37. inventory: false
  38. advanced_inventory: false
  39. projects: false
  40. workflow_engine: false
  41. reporting: false
  42. pro_reporting: false
  43. trouble_tickets: false
  44. fueling: false
  45. pro_planning: false
  46. old_scheduler_planner: false
  47. old_project_mgt: false
  48. expiration_date: 2033-12-10
  49. email_for_alert: admin@nasctech.com
  50. max_site_qty: 1000
  51. max_user_qty: 1500
  52. max_device_qty: 100
  53. co_trending_filter: false
  54. co_overlay_kml_kmz: false
  55. co_reporting: true
  56.  
  57. local.yml:
  58. production_environments:
  59. - production
  60. log_level: 'error'
  61. settings:
  62. sidekiq_namespace: 'local'
  63. sidekiq_retry_count: 1
  64. default_host: '118.201.1.238'
  65. mail_from: 'g-streamline@singtel.com'
  66. attachments_storage: local
  67. attachment_styles:
  68. thumb: '260x260'
  69. medium: '960x600>'
  70. force_ssl: false
  71. email_deliveries_enabled: true
  72. os_commands_execution_in_co_enabled: false
  73. db_override: {}
  74. optional: {}
  75.  
  76. smtp_config.yml:
  77. address: 10.20.1.44
  78. port: 25
  79. user_name: g-opsreq@singtel.com
  80. password: req2016b
  81. authentication: login
  82.  
  83. sidekiq.yml:
  84. - verbose: false
  85. path_to_config: config/sidekiq.yml
  86. pidfile: tmp/pids/sidekiq.pid
  87. concurrency: 3
  88. queues:
  89. - [co, 8]
  90. - [data_audit, 7]
  91. - [mail_processings, 6]
  92.  
  93. newrelic.yml:
  94. license_key: 'b518408f81ca7820e146f1984369599072accc9b'
  95. app_name: Streamline
  96. monitor_mode: false
  97.  
  98. trinidad.yml:
  99. address: 127.0.0.1
  100. port: 3000
  101. http:
  102. acceptCount: 128
  103. maxThreads: 16
  104. maxKeepAliveRequests: 64
  105. environment: production
  106. threadsafe: true
  107. context_path: /
  108. root_dir: "."
  109. rackup: config.ru
  110. public: public
  111. java_lib: lib/java
  112. java_classes: lib/java/classes
  113. default_web_xml: config/trinidad-web.xml
  114. reload_strategy: default
  115. extensions:
  116. daemon:
  117. pid_file: /var/www/streamline_jruby/tmp/pids/trinidad.pid
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement