parameters.yml.dist 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # This file is a "template" of what your parameters.yml file should look like
  2. # Set parameters here that may be different on each deployment target of the app, e.g. development, staging, production.
  3. # http://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
  4. parameters:
  5. database_host: mysql
  6. database_port: ~
  7. database_name: fd3_ftth
  8. database_user: root
  9. database_password: '%env(MYSQL_ROOT_PASSWORD)%'
  10. # You should uncomment this if you want use pdo_sqlite
  11. # database_path: "%kernel.root_dir%/data.db3"
  12. mailer_transport: smtp
  13. mailer_host: 127.0.0.1
  14. mailer_user: ~
  15. mailer_password: ~
  16. # A secret key that's used to generate certain security-related tokens
  17. secret: ThisTokenIsNotSoSecretChangeIt
  18. jms_serializer.camel_case_naming_strategy.class: JMS\Serializer\Naming\IdenticalPropertyNamingStrategy
  19. # RabbitMQ parameters
  20. rabbit_mq.host: amqp
  21. rabbit_mq.port: 5672
  22. rabbit_mq.user: 'guest'
  23. rabbit_mq.password: 'guest'
  24. rabbit_mq.vhost: '/'
  25. db_session_host: mysql
  26. db_session_port: null
  27. db_session_name: fd_session
  28. db_session_user: root
  29. db_session_password: '%env(MYSQL_ROOT_PASSWORD)%'
  30. # RabbitMQ routing key
  31. env(HOST_AMQP): amqp
  32. env(AMQP_KEY): ftth
  33. cookie_domain_client: '%env(CLIENT)%'
  34. cookie_domain: '%cookie_domain_client%.%env(DOMAIN)%'
  35. session_names: [flowdat_base_session, flowdat_ftth_session, flowdat_stats_session, flowdat_radius_session, flowdat_cablemodem_session, flowdat_dhcp_session]
  36. # nombre del servicio del nginx
  37. nginx_name: nginx-proxy
  38. onu.distance.nap: 0.2
  39. # App Dummy URL
  40. env(HOST_DUMMY): http://www.flowdat.com/
  41. url_dummy : %env(HOST_DUMMY)%
  42. tr069_service: false
  43. tr069_api: tr069.api
  44. tr069_user: admin
  45. tr069_pass: admin
  46. tr069_host: genieacs-nbi
  47. tr069_port: 7557
  48. tr069_selenium_host: selenium
  49. backups: '%kernel.project_dir%/web/backups-config/ftth/'
  50. show.onu.activationCode: false
  51. fd3_modules_install: '%env(MODULES_INSTALL)%,base,configuracion'