Skip to content

Instantly share code, notes, and snippets.

@crilleengvall
Last active December 14, 2015 17:09
Show Gist options
  • Save crilleengvall/5120369 to your computer and use it in GitHub Desktop.
Save crilleengvall/5120369 to your computer and use it in GitHub Desktop.
Boxfile example
web1:
################################################
## GENERAL SETTINGS
################################################
shared_writable_dirs:
- app/cache
- app/logs
################################################
## WEB SPECIFIC SETTINGS
################################################
document_root: web
default_gateway: app.php
index_list: [app.php]
################################################
## PHP SPECIFIC SETTINGS
################################################
php_version: 5.3.5
php_extensions:
- intl
- mbstring
- xsl
- apc
- mysql
- posix
- iconv
- tokenizer
- xml
- pdo_mysql
php_session_autostart: Off
php_short_open_tag: Off
magic_quotes_gpc: Off
after_deploy:
- "php app/console cache:clear --env=prod --no-debug"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment