Hi. > Ok, it will be a ternary that defaults to false as always: > > # disable all redirects > disable_ssl_filter: false > > # disable all redirects for env dev: > disable_ssl_filter: dev > ...
As every setting in app.yml is environment-specific (see [1]) anyway, wouldn't it be better to just use a simple boolean value? like that: app.yml: -------------------- all: disable_ssl_filter: false dev: disable_ssl_filter: true ----------------------------- Martin [1] http://www.symfony-project.com/book/trunk/05-Configuring-Symfony#Custom%20Application%20Settings%20and%20app.yml --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/symfony-devs?hl=en -~----------~----~----~----~------~----~------~--~---
