-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.rb
More file actions
38 lines (33 loc) · 1.47 KB
/
Copy pathserver.rb
File metadata and controls
38 lines (33 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
supportdir = File.expand_path(File.join(File.dirname(__FILE__), ".."))
tmpdir = File.expand_path(File.join(File.dirname(__FILE__), "..", "tmp"))
log_level :debug
log_location STDOUT
file_cache_path File.join(tmpdir, "cache")
ssl_verify_mode :verify_none
registration_url "http://127.0.0.1:4000"
openid_url "http://127.0.0.1:4000"
template_url "http://127.0.0.1:4000"
remotefile_url "http://127.0.0.1:4000"
search_url "http://127.0.0.1:4000"
role_url "http://127.0.0.1:4000"
chef_server_url "http://127.0.0.1:4000"
client_url "http://127.0.0.1:4000"
cookbook_path File.join(supportdir, "cookbooks")
openid_store_path File.join(tmpdir, "openid", "store")
openid_cstore_path File.join(tmpdir, "openid", "cstore")
search_index_path File.join(tmpdir, "search_index")
role_path File.join(supportdir, "roles")
signing_ca_path File.join(tmpdir, "ca")
couchdb_database 'chef_integration'
systmpdir = File.expand_path(File.join(Dir.tmpdir, "chef_integration"))
validation_client_name "validator"
validation_key File.join(systmpdir, "validation.pem")
client_key File.join(systmpdir, "client.pem")
web_ui_client_name "chef-webui"
web_ui_key File.join(systmpdir, "webui.pem")
solr_jetty_path File.join(supportdir, "solr", "jetty")
solr_heap_size "250M"
solr_data_path File.join(supportdir, "solr", "data")
solr_home_path File.join(supportdir, "solr", "home")
solr_heap_size "256M"
Chef::Log::Formatter.show_time = true