Created
May 4, 2012 06:23
-
-
Save andreacampi/2592578 to your computer and use it in GitHub Desktop.
PHP application
This file contains 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
<?php | |
var $db_host = '<%= @host %>'; | |
var $db_type = '<%= @database['type'] %>'; | |
var $db_name = '<%= @database['name'] %>'; |
This file contains 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
application "phpvirtualbox" do | |
path "..." | |
owner "www" | |
group "www" | |
repository "..." | |
deploy_key "..." | |
revision node.chef_environment == "production" ? "4_0_7" : "HEAD" | |
packages value_for_platform( | |
"freebsd" => { "default" => ["php5-soap"] }, | |
"default" => { "default" => ["php-soap"] } | |
) | |
php do | |
database_master_role "database_master" | |
local_settings_file "config.php" | |
database do | |
name "mediawiki" | |
username "whatever" | |
end | |
end | |
mod_php_apache2 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment