parameters.yml.dist 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. parameters:
  2. database_driver: pdo_mysql
  3. database_host: localhost
  4. database_name: packagist
  5. database_user: root
  6. database_password:
  7. database_name_test: packagist_test
  8. mailer_transport:
  9. mailer_host: localhost
  10. mailer_user:
  11. mailer_password:
  12. mailer_from_email: admin@example.org
  13. mailer_from_name: Admin Team
  14. # packagist_host: example.org
  15. # router.request_context.host: '%packagist_host%'
  16. # router.request_context.scheme: https
  17. redis_dsn: redis://localhost/1
  18. redis_dsn_test: redis://127.0.0.1/14
  19. redis_session_dsn: redis://localhost/2
  20. locale: en
  21. google_analytics:
  22. ga_key:
  23. # set those to values obtained by creating an application at https://github.com/settings/applications
  24. github.client_id: CHANGE_ME_IN_PROD
  25. github.client_secret: CHANGE_ME_IN_PROD
  26. # -- performance features --
  27. # set both to apc to optimize things if it is available
  28. validation_cache_backend: ~
  29. doctrine_cache_backend: array
  30. # -- security features --
  31. secret: CHANGE_ME_IN_PROD
  32. remember_me.secret: CHANGE_ME_IN_PROD
  33. # set to true to enforce ssl, make sure you have a proper certificate in place
  34. force_ssl: false
  35. # e.g. [127.0.0.1] if the app is running behind a reverse proxy on localhost
  36. trusted_proxies: ~
  37. # e.g. ['.*\.?packagist\.org$'] to allow packagist.org and all subdomains as valid hosts
  38. trusted_hosts: ~
  39. # -- Algolia credentials --
  40. algolia.app_id: CHANGE_ME
  41. algolia.admin_key: CHANGE_ME
  42. algolia.search_key: CHANGE_ME
  43. algolia.index_name: 'packagist'