Created
April 18, 2010 17:46
-
-
Save bonyiii/370428 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
bear-chef chef # egrep -v '^\s*(#|$)' /etc/chef/server.rb | |
log_level :debug | |
log_location '/var/log/chef/server.log' | |
ssl_verify_mode :verify_none | |
chef_server_url 'http://localhost:4000' | |
signing_ca_path '/var/lib/chef/ca' | |
signing_ca_cert '/var/lib/chef/ca/cert.pem' | |
signing_ca_key '/var/lib/chef/ca/key.pem' | |
couchdb_database 'chef' | |
cookbook_path [ '/var/lib/chef/cookbooks', '/var/lib/chef/site-cookbooks' ] | |
cookbook_tarball_path '/var/lib/chef/cookbook-tarballs' | |
file_cache_path '/var/lib/chef/cache' | |
node_path '/var/lib/chef/nodes' | |
openid_store_path '/var/lib/chef/openid/store' | |
openid_cstore_path '/var/lib/chef/openid/cstore' | |
search_index_path '/var/lib/chef/search_index' | |
role_path '/var/lib/chef/roles' | |
cache_options({ :path => "/var/lib/chef/cache/checksums", :skip_expires => true }) | |
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 'Ch4ng3.tH15!' | |
supportdir = '/var/lib/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' | |
amqp_pass 'Mégse látszodjon' | |
umask 0022 | |
Mixlib::Log::Formatter.show_time = true | |
bear-chef chef # egrep -v '^\s*(#|$)' /etc/chef/client.rb | |
log_level :info | |
log_location '/var/log/chef/client.log' | |
ssl_verify_mode :verify_none | |
chef_server_url 'http://localhost:4000' | |
validation_client_name 'chef-validator' | |
validation_key '/etc/chef/validation.pem' | |
client_key '/etc/chef/client.pem' | |
file_cache_path '/var/lib/chef/cache' | |
pid_file '/var/run/chef/client.pid' | |
Mixlib::Log::Formatter.show_time = true | |
bear-chef chef # | |
bear-chef chef # egrep -v '^\s*(#|$)' /etc/chef/solr.rb | |
log_location "/var/log/chef/solr.log" | |
search_index_path "/var/lib/chef/search_index" | |
solr_jetty_path "/var/lib/chef/solr/jetty" | |
solr_home_path "/var/lib/chef/solr/home" | |
solr_data_path "/var/lib/chef/solr/data" | |
solr_heap_size "256M" | |
Mixlib::Log::Formatter.show_time = true | |
amqp_pass 'Mégse látszodjon' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment