// app/frontend/config/security.yml
default:
is_secure: off
// app/frontend/config/settings.yml
# You can find more information about this file on the symfony website:
# <a href="http://www.symfony-project.org/reference/1_4/en/04-Settings" target="_blank">http://www.symfony-project.org/reference/1_4/en/04-Settings</a>
prod:
.settings:
no_script_name: true
logging_enabled: false
dev:
.settings:
error_reporting: <?php echo (E_ALL | E_STRICT)."\n" ?>
web_debug: true
cache: false
no_script_name: false
etag: false
test:
.settings:
error_reporting: <?php echo ((E_ALL | E_STRICT) ^ E_NOTICE)."\n" ?>
cache: false
web_debug: false
no_script_name: false
etag: false
all:
.settings:
# Form security secret (CSRF protection)
csrf_secret: 61c066160e95ee9948041e2b0d1ed04b854773e0
# Output escaping settings
escaping_strategy: true
escaping_method: ESC_SPECIALCHARS
# Enable the database manager
use_database: true
enabled_modules: [default, sfGuardAuth]
.actions:
login_module: sfGuardAuth
login_action: signin
secure_module: sfGuardAuth
secure_action: secure