Skip to content

Instantly share code, notes, and snippets.

@delbono
Created October 5, 2010 10:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save delbono/611324 to your computer and use it in GitHub Desktop.
Save delbono/611324 to your computer and use it in GitHub Desktop.
# You can find more information about this file on the symfony website:
# http://www.symfony-project.org/reference/1_4/en/04-Settings
prod:
.settings:
no_script_name: false
logging_enabled: true
error_reporting: <?php echo (E_ALL | E_STRICT)."\n" ?>
level: debug
active: on
web_debug: on
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
web_debug: on
all:
.settings:
enabled_modules: [default, sfGuardAuth ]
# Form security secret (CSRF protection)
csrf_secret: 7ff212178f37863db8145c3802be1cc162d24d1b
# Output escaping settings
escaping_strategy: true
escaping_method: ESC_SPECIALCHARS
# Enable the database manager
use_database: true
login_module: sfGuardAuth
login_action: signin
secure_module: sfGuardAuth
secure_action: secure
logging_enabled: true
error_reporting: <?php echo (E_ALL | E_STRICT)."\n" ?>
web_debug: on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment