Created
February 5, 2013 23:03
-
-
Save eldavido/4718538 to your computer and use it in GitHub Desktop.
David's local server.rb
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
log_level :info | |
log_location STDOUT | |
ssl_verify_mode :verify_none | |
chef_server_url "http://localhost:4001" | |
signing_ca_path "/var/chef/ca" | |
couchdb_database 'chef' | |
cookbook_path [ "/Users/dra/git/chef/cookbooks" ] | |
file_cache_path "/var/chef/cache" | |
node_path "/var/chef/nodes" | |
openid_store_path "/var/chef/openid/store" | |
openid_cstore_path "/var/chef/openid/cstore" | |
search_index_path "/var/chef/search_index" | |
role_path "/var/chef/roles" | |
validation_client_name "chef-validator" | |
validation_key "/etc/chef/validation.pem" | |
client_key "/etc/chef/client.pem" | |
web_ui_client_name "chef-webui" | |
web_ui_key "/etc/chef/webui.pem" | |
web_ui_admin_user_name "admin" | |
web_ui_admin_default_password "af450XhQhf" | |
supportdir = "/srv/chef/support" | |
solr_jetty_path File.join(supportdir, "solr", "jetty") | |
solr_data_path File.join(supportdir, "solr", "data") | |
solr_home_path File.join(supportdir, "solr", "home") | |
solr_heap_size "256M" | |
umask 0022 | |
Mixlib::Log::Formatter.show_time = false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment