1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- # This file is a "template" of what your parameters.yml file should look like
- # Set parameters here that may be different on each deployment target of the app, e.g. development, staging, production.
- # http://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
- parameters:
- database_driver: pdo_mysql
- database_host: mysql
- database_port: ~
- database_name: fd3_ftth
- database_user: root
- database_password: 235r2342gtfsw
- # You should uncomment this if you want use pdo_sqlite
- # database_path: "%kernel.root_dir%/data.db3"
- mailer_transport: smtp
- mailer_host: 127.0.0.1
- mailer_user: ~
- mailer_password: ~
- # A secret key that's used to generate certain security-related tokens
- secret: ThisTokenIsNotSoSecretChangeIt
- jms_serializer.camel_case_naming_strategy.class: JMS\Serializer\Naming\IdenticalPropertyNamingStrategy
- # amqp queue config
- rabbit_mq.host: 'amqp'
- rabbit_mq.port: 5672
- rabbit_mq.user: 'guest'
- rabbit_mq.password: 'guest'
- rabbit_mq.vhost: '/'
- db_session_host: mysql
- db_session_port: null
- db_session_name: fd_session
- db_session_user: root
- db_session_password: '%env(MYSQL_ROOT_PASSWORD)%'
-
- # RabbitMQ routing key
- env(HOST_AMQP): amqp
- env(AMQP_KEY): ftth
- cookie_domain_client: '%env(CLIENT)%'
- cookie_domain: '%cookie_domain_client%.%env(DOMAIN)%'
- session_names: [flowdat_base_session, flowdat_ftth_session, flowdat_stats_session, flowdat_radius_session, flowdat_cablemodem_session, flowdat_dhcp_session]
- # nombre del servicio del nginx
- nginx_name: nginx-proxy
- onu.distance.nap: 0.2
- tr069_service: false
- tr069_api: tr069.api
- tr069_user: admin
- tr069_pass: admin
- tr069_host: genieacs-nbi
- tr069_port: 7557
- tr069_selenium_host: selenium
- backups: '%kernel.project_dir%/web/backups-config/ftth/'
-
- show.onu.activationCode: false
- fd3_modules_install: '%env(MODULES_INSTALL)%,base,configuracion'
|