Created
October 5, 2010 10:16
-
-
Save delbono/611324 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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