Advertisement
Guest User

Untitled

a guest
Jul 27th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. parameters:
  2. # Adds a fallback DATABASE_URL if the env var is not set.
  3. # This allows you to run cache:warmup even if your
  4. # environment variables are not available yet.
  5. # You should not need to change this value.
  6. env(DATABASE_URL): ''
  7.  
  8. doctrine:
  9. dbal:
  10. default_connection: default
  11. connections:
  12. default:
  13. dbname: DBNAME
  14. host: DOMAINNNNNNN
  15. port: 5432
  16. user: USERRR
  17. password: PASSSSSSSSSSWORD
  18. driver: pdo_pgsql
  19. charset: UTF8
  20. default_table_options:
  21. charset: UTF8
  22. collate: UTF8
  23. webdb:
  24. dbname: DB
  25. host: HOST
  26. port: 9280
  27. user: USER
  28. password: PASSWRD
  29. driver: pdo_pgsql
  30. charset: UTF8
  31. default_table_options:
  32. charset: UTF8
  33. collate: UTF8
  34.  
  35. orm:
  36. default_entity_manager: default
  37. entity_managers:
  38. default:
  39. connection: default
  40. mappings:
  41. Main:
  42. is_bundle: false
  43. type: annotation
  44. dir: '%kernel.project_dir%/src/Entity'
  45. alias: App
  46. prefix: 'App\Entity'
  47. webdb:
  48. connection: webdb
  49. mappings:
  50. Main:
  51. is_bundle: false
  52. type: annotation
  53. dir: '%kernel.project_dir%/src/Entity'
  54. alias: App
  55. prefix: 'App\Entity'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement