12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- # 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: 127.0.0.1
- database_port: ~
- database_name: chamilomaster
- database_user: root
- database_password: root
- # 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
- password_encryption: sha1
- # Activation for multi-url access
- multiple_access_urls: false
- # Deny the elimination of users
- deny_delete_users: false
- installed: ~
- password_encryption: sha1
- sp_bower_bin: '/usr/bin/bower'
- sylius.cache:
- type: file_system
- url_append: ''
- sonata_media.cdn.host: /uploads/media
- # If you installed Chamilo in http://localhost/chamilo_master
- # you need to setup like this:
- # url_append: '/chamilo_master/web/'
- # sonata_media.cdn.host: /chamilo_master/web/uploads/media
- sonata_page.varnish.command: 'if [ ! -r "/etc/varnish/secret" ]; then echo "VALID ERROR :/"; else varnishadm -S /etc/varnish/secret -T 127.0.0.1:6082 {{ COMMAND }} "{{ EXPRESSION }}"; fi;'
- locales: [en, fr, es, de]
- # Aspell Settings
- # aspell_bin: '/usr/bin/hunspell'
- # aspell_opts : '-a -d en_GB -H -i utf-8'
- # aspell_temp_dir : './'
- # If the database is down this css style will be used to show the errors.
- theme_fallback : 'chamilo'
- # The default template that will be use in the system.
- # default_template : 'default' # (main/template/default)
- # Hide fields in the main/user/user.php page
- # hide_user_field_from_list : ['username']
- hosting_total_size_limit: 0
|