Guest User

Untitled

a guest
Mar 11th, 2018
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. [production]
  2. phpSettings.display_startup_errors = 1
  3. phpSettings.display_errors = 1
  4. includePaths.library = APPLICATION_PATH "/../library"
  5. bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
  6. bootstrap.class = "Bootstrap"
  7. appnamespace = "Application"
  8. resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
  9. resources.frontController.params.displayExceptions = 1
  10. resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
  11.  
  12. ; Carregando bibliotecas externas
  13. Autoloadernamespaces[] = "Zend"
  14. AutoloaderNamespaces[] = "JRA"
  15. AutoloaderNamespaces[] = "ZendX"
  16.  
  17. ; Habilitando módulos
  18. resources.frontController.params.prefixDefaultModule = "1"
  19. resources.frontController.defaultModule = "default"
  20. resources.frontController.defaultControllerName = "index"
  21. resources.frontController.defaultAction = "index"
  22. resources.modules[] = ""
  23.  
  24. ; Habilitando view
  25. resources.view.basePath = APPLICATION_PATH "/views/"
  26. resources.view.encoding = "UTF-8"
  27. resources.view.doctype = "HTML5"
  28. resources.view.contentType = "text/html; charset=UTF-8"
  29. resources.view[] =
  30.  
  31. ; Configuração de banco de dados
  32. resources.db.adapter = "PDO_MYSQL"
  33. resources.db.params.host = "localhost"
  34. resources.db.params.charset = "utf8"
  35. resources.db.params.username = "root"
  36. resources.db.params.password = ""
  37. resources.db.params.dbname = "telecom"
  38. resources.db.isDefaultTableAdapter = true
  39.  
  40.  
  41. ; Login com LDAP
  42. ldap.server1.host = 192.168.12.25
  43. ldap.server1.useStartTls = true
  44. ldap.server1.accountDomainName = capuche.com.br
  45. ldap.server1.accountDomainNameShort = capuche
  46. ldap.server1.accountCanonicalForm = 2
  47. ldap.server1.baseDn = "OU=capuche,DC=com,DC=br"
  48.  
  49. ; Mail
  50. ;resources.mail.transport.type = smtp
  51. ;resources.mail.transport.host = "smtp.example.com"
  52. ;resources.mail.transport.auth = login
  53. ;resources.mail.transport.username = myUsername
  54. ;resources.mail.transport.password = myPassword
  55. ;resources.mail.transport.register = true ; True by default
  56.  
  57. ;resources.mail.defaultFrom.email = john@example.com
  58. ;resources.mail.defaultFrom.name = "John Doe"
  59. ;resources.mail.defaultReplyTo.email = Jane@example.com
  60. ;resources.mail.defaultReplyTo.name = "Jane Doe"
  61.  
  62. ; Init Dojo
  63. resources.dojo.enable = true
  64.  
  65. ; Local
  66. resources.locale.default = "pt_BR"
  67. resources.locale.force = true
  68.  
  69. ; Cache
  70. resources.locale.cache = "locale"
  71.  
  72. ; Personalização
  73. auth.salt = 'capuche'
  74. sistema.log = APPLICATION_PATH "/../log/log.txt"
  75. sistema.upload = APPLICATION_PATH "/../upload"
  76.  
  77. [staging : production]
  78.  
  79. [testing : production]
  80. phpSettings.display_startup_errors = 1
  81. phpSettings.display_errors = 1
  82.  
  83. [development : production]
  84. phpSettings.display_startup_errors = 1
  85. phpSettings.display_errors = 1
  86. resources.frontController.params.displayExceptions = 1
Add Comment
Please, Sign In to add comment