12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- # 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_host: 127.0.0.1
- database_port: ~
- database_name: fd3_stats
- database_user: root
- database_password: ~
- # You should uncomment this if you want to use pdo_sqlite
- #database_path: '%kernel.root_dir%/../var/data/data.sqlite'
- 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
-
- env(HOST_GRAFANA): grafana.%cookie_domain%
- grafana_url: 'http://%env(HOST_GRAFANA)%/dashboard-solo/db/'
- db_session_host: 127.0.0.1
- db_session_port: null
- db_session_name: fd_session
- db_session_user: root
- db_session_password: null
- app_path: '/var/flowdat/stats'
- geoserver_service: true
- geoserver_host: 127.0.0.1
- geoserver_port: 8080
- geoserver_user: admin
- geoserver_pass: geoserver
- geoserver_path_shapes: '/var/flowdat/geoserver-shapes'
- device_server_base: 1
- # Url del webservice de crontab para crear los archivos
- url_crontab: http://127.0.0.1/cron.php?wsdl
- env(HOST_BASE): base
- env(HOST_AMQP): 127.0.0.1
- env(AMQP_KEY): 127.0.0.1
- rabbit_mq.host: '127.0.0.1'
- rabbit_mq.port: 5672
- rabbit_mq.user: 'guest'
- rabbit_mq.password: 'guest'
- rabbit_mq.vhost: '/'
- env(CLIENT): ''
- cookie_domain_client: '%env(CLIENT)%'
- cookie_domain: '%cookie_domain_client%.%cookie_domain_client%.flowdat.com'
- session_names: [flowdat_base_session, flowdat_ftth_session, flowdat_mapas_session, flowdat_stats_session, flowdat_radius_session, flowdat_cablemodem_session]
- env(REDIS_HOST): "127.0.0.1" #Hay que borrar y usar HOST_REDIS
- env(HOST_REDIS): "127.0.0.1"
- redis.connection : "tcp://%env(HOST_REDIS)%:6379"
- env(HOST_STATSD): '127.0.0.1'
- statsd:
- host: %env(HOST_STATSD)%
- port: 8125
|