123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
- $container->loadFromExtension('framework', array(
- 'secret' => 's3cr3t',
- 'default_locale' => 'fr',
- 'form' => array(
- 'csrf_protection' => array(
- 'field_name' => '_csrf',
- ),
- ),
- 'http_method_override' => false,
- 'trusted_proxies' => array('127.0.0.1', '10.0.0.1'),
- 'csrf_protection' => array(
- 'enabled' => true,
- ),
- 'esi' => array(
- 'enabled' => true,
- ),
- 'ssi' => array(
- 'enabled' => true,
- ),
- 'profiler' => array(
- 'only_exceptions' => true,
- 'enabled' => false,
- ),
- 'router' => array(
- 'resource' => '%kernel.root_dir%/config/routing.xml',
- 'type' => 'xml',
- ),
- 'session' => array(
- 'storage_id' => 'session.storage.native',
- 'handler_id' => 'session.handler.native_file',
- 'name' => '_SYMFONY',
- 'cookie_lifetime' => 86400,
- 'cookie_path' => '/',
- 'cookie_domain' => 'example.com',
- 'cookie_secure' => true,
- 'cookie_httponly' => false,
- 'use_cookies' => true,
- 'gc_maxlifetime' => 90000,
- 'gc_divisor' => 108,
- 'gc_probability' => 1,
- 'save_path' => '/path/to/sessions',
- ),
- 'templating' => array(
- 'cache' => '/path/to/cache',
- 'engines' => array('php', 'twig'),
- 'loader' => array('loader.foo', 'loader.bar'),
- 'form' => array(
- 'resources' => array('theme1', 'theme2'),
- ),
- 'hinclude_default_template' => 'global_hinclude_template',
- ),
- 'translator' => array(
- 'enabled' => true,
- 'fallback' => 'fr',
- 'paths' => array('%kernel.root_dir%/Fixtures/translations'),
- ),
- 'validation' => array(
- 'enabled' => true,
- 'cache' => 'validator.mapping.cache.doctrine.apc',
- ),
- 'annotations' => array(
- 'cache' => 'file',
- 'debug' => true,
- 'file_cache_dir' => '%kernel.cache_dir%/annotations',
- ),
- 'serializer' => array(
- 'enabled' => true,
- 'enable_annotations' => true,
- 'cache' => 'serializer.mapping.cache.apc',
- 'name_converter' => 'serializer.name_converter.camel_case_to_snake_case',
- ),
- 'ide' => 'file%%link%%format',
- 'request' => array(
- 'formats' => array(
- 'csv' => array(
- 'text/csv',
- 'text/plain',
- ),
- 'pdf' => 'application/pdf',
- ),
- ),
- ));
|