parameters.yml.dist 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. solr_host: 127.0.0.1
  21. solr_port: 8983
  22. solr_path: /solr
  23. solr_core: collection1
  24. locale: en
  25. google_analytics:
  26. ga_key:
  27. # set those to values obtained by creating an application at https://github.com/settings/applications
  28. github.client_id:
  29. github.client_secret:
  30. # -- performance features --
  31. # set both to apc to optimize things if it is available
  32. validation_cache_backend: ~
  33. doctrine_cache_backend: array
  34. # -- security features --
  35. secret: CHANGE_ME_IN_PROD
  36. remember_me.secret: CHANGE_ME_IN_PROD
  37. # set to true to enforce ssl, make sure you have a proper certificate in place
  38. force_ssl: false
  39. # e.g. [127.0.0.1] if the app is running behind a reverse proxy on localhost
  40. trusted_proxies: ~
  41. # e.g. ['.*\.?packagist\.org$'] to allow packagist.org and all subdomains as valid hosts
  42. trusted_hosts: ~