3349: Merge branch 'master' into 3349-install-docs
[arvados.git] / services / api / config / application.yml.example
1 # Copy this file to application.yml and edit to suit.
2 #
3 # Consult application.default.yml for the full list of configuration
4 # settings.
5 #
6 # The order of precedence is:
7 # 1. config/environments/{RAILS_ENV}.rb (deprecated)
8 # 2. Section in application.yml corresponding to RAILS_ENV (e.g., development)
9 # 3. Section in application.yml called "common"
10 # 4. Section in application.default.yml corresponding to RAILS_ENV
11 # 5. Section in application.default.yml called "common"
12
13 development:
14   # Mandatory site secrets. See application.default.yml for more info.
15   secret_token: ~
16   blob_signing_key: ~
17
18 production:
19   # Mandatory site secrets. See application.default.yml for more info.
20   secret_token: ~
21   blob_signing_key: ~
22
23   uuid_prefix: bogus
24
25   # compute_node_domain: example.org
26   # compute_node_nameservers:
27   #   - 127.0.0.1
28   #   - 192.168.1.1
29   #
30   # The version below is suitable for AWS.
31   # Uncomment and change <%# to <%= to use it.
32   # compute_node_nameservers: <%#
33   #   require 'net/http'
34   #   ['local', 'public'].collect do |iface|
35   #     Net::HTTP.get(URI("http://169.254.169.254/latest/meta-data/#{iface}-ipv4")).match(/^[\d\.]+$/)[0]
36   #   end << '172.16.0.23'
37   # %>
38
39 test:
40   uuid_prefix: zzzzz
41   secret_token: <%= rand(2**512).to_s(36) %>
42   blob_signing_key: <%= rand(2**512).to_s(36) %>
43
44 common:
45   #git_repositories_dir: /var/cache/git
46   #git_internal_dir: /var/cache/arvados/internal.git
47