6663: Update default git_repositories_dir to match install guide.
[arvados.git] / services / api / config / application.default.yml
1 # Do not use this file for site configuration. Create application.yml
2 # instead (see application.yml.example).
3 #
4 # The order of precedence is:
5 # 1. config/environments/{RAILS_ENV}.rb (deprecated)
6 # 2. Section in application.yml corresponding to RAILS_ENV (e.g., development)
7 # 3. Section in application.yml called "common"
8 # 4. Section in application.default.yml corresponding to RAILS_ENV
9 # 5. Section in application.default.yml called "common"
10
11 common:
12   ###
13   ### Essential site configuration
14   ###
15
16   # The prefix used for all database identifiers to identify the record as
17   # originating from this site.  Must be exactly 5 alphanumeric characters
18   # (lowercase ASCII letters and digits).
19   uuid_prefix: ~
20
21   # secret_token is a string of alphanumeric characters used by Rails
22   # to sign session tokens. IMPORTANT: This is a site secret. It
23   # should be at least 50 characters.
24   secret_token: ~
25
26   # blob_signing_key is a string of alphanumeric characters used to
27   # generate permission signatures for Keep locators. It must be
28   # identical to the permission key given to Keep. IMPORTANT: This is
29   # a site secret. It should be at least 50 characters.
30   blob_signing_key: ~
31
32   # These settings are provided by your OAuth2 provider (e.g.,
33   # sso-provider).
34   sso_app_secret: ~
35   sso_app_id: ~
36   sso_provider_url: ~
37
38   # If this is not false, HTML requests at the API server's root URL
39   # are redirected to this location, and it is provided in the text of
40   # user activation notification email messages to remind them where
41   # to log in.
42   workbench_address: false
43
44   # The ARVADOS_WEBSOCKETS environment variable determines whether to
45   # serve http, websockets, or both.
46   #
47   # If ARVADOS_WEBSOCKETS="true", http and websockets are both served
48   # from the same process.
49   #
50   # If ARVADOS_WEBSOCKETS="ws-only", only websockets is served.
51   #
52   # If ARVADOS_WEBSOCKETS="false" or not set at all, only http is
53   # served. In this case, you should have a separate process serving
54   # websockets, and the address of that service should be given here
55   # as websocket_address.
56   #
57   # If websocket_address is false (which is the default), the
58   # discovery document will tell clients to use the current server as
59   # the websocket service, or (if the current server does not have
60   # websockets enabled) not to use websockets at all.
61   #
62   # Example: Clients will connect to the specified endpoint.
63   #websocket_address: wss://127.0.0.1:3333/websocket
64   # Default: Clients will connect to this server if it's running
65   # websockets, otherwise none at all.
66   websocket_address: false
67
68   # Git repositories must be readable by api server, or you won't be
69   # able to submit crunch jobs. To pass the test suites, put a clone
70   # of the arvados tree in {git_repositories_dir}/arvados.git or
71   # {git_repositories_dir}/arvados/.git
72   git_repositories_dir: /var/lib/arvados/git/repositories
73
74   # This is a (bare) repository that stores commits used in jobs.  When a job
75   # runs, the source commits are first fetched into this repository, then this
76   # repository is used to deploy to compute nodes.  This should NOT be a
77   # subdirectory of {git_repositiories_dir}.
78   git_internal_dir: /var/lib/arvados/internal.git
79
80   # Default replication level for collections. This is used when a
81   # collection's replication_desired attribute is nil.
82   default_collection_replication: 2
83
84
85   ###
86   ### Overriding default advertised hostnames/URLs
87   ###
88
89   # If not false, this is the hostname that will be used for root_url and
90   # advertised in the discovery document.  By default, use the default Rails
91   # logic for deciding on a hostname.
92   host: false
93
94   # Base part of SSH git clone url given with repository resources. If
95   # true, the default "git@git.(uuid_prefix).arvadosapi.com:" is
96   # used. If false, SSH clone URLs are not advertised. Include a
97   # trailing ":" or "/" if needed: it will not be added automatically.
98   git_repo_ssh_base: true
99
100   # Base part of HTTPS git clone urls given with repository
101   # resources. This is expected to be an arv-git-httpd service which
102   # accepts API tokens as HTTP-auth passwords. If true, the default
103   # "https://git.(uuid_prefix).arvadosapi.com/" is used. If false,
104   # HTTPS clone URLs are not advertised. Include a trailing ":" or "/"
105   # if needed: it will not be added automatically.
106   git_repo_https_base: true
107
108
109   ###
110   ### New user and & email settings
111   ###
112
113   # Config parameters to automatically setup new users.
114   # The params auto_setup_new_users_with_* are meaningful only when auto_setup_new_users is turned on.
115   # auto_setup_name_blacklist is a list of usernames to be blacklisted for auto setup.
116   auto_setup_new_users: false
117   auto_setup_new_users_with_vm_uuid: false
118   auto_setup_new_users_with_repository: false
119   auto_setup_name_blacklist: [arvados, git, gitolite, gitolite-admin, root, syslog]
120
121   # When new_users_are_active is set to true, the user agreement check is skipped.
122   new_users_are_active: false
123
124   # The e-mail address of the user you would like to become marked as an admin
125   # user on their first login.
126   # In the default configuration, authentication happens through the Arvados SSO
127   # server, which uses OAuth2 against Google's servers, so in that case this
128   # should be an address associated with a Google account.
129   auto_admin_user: false
130
131   # If auto_admin_first_user is set to true, the first user to log in when no
132   # other admin users exist will automatically become an admin user.
133   auto_admin_first_user: false
134
135   # Email address to notify whenever a user creates a profile for the
136   # first time
137   user_profile_notification_address: false
138
139   admin_notifier_email_from: arvados@example.com
140   email_subject_prefix: "[ARVADOS] "
141   user_notifier_email_from: arvados@example.com
142   new_user_notification_recipients: [ ]
143   new_inactive_user_notification_recipients: [ ]
144
145
146   ###
147   ### Limits, timeouts and durations
148   ###
149
150   # Lifetime (in seconds) of blob permission signatures generated by
151   # the API server. This determines how long a client can take (after
152   # retrieving a collection record) to retrieve the collection data
153   # from Keep. If the client needs more time than that (assuming the
154   # collection still has the same content and the relevant user/token
155   # still has permission) the client can retrieve the collection again
156   # to get fresh signatures.
157   #
158   # Datamanager considers an unreferenced block older than this to be
159   # eligible for garbage collection. Therefore, it should never be
160   # smaller than the corresponding value used by any local keepstore
161   # service (see keepstore -blob-signature-ttl flag). This rule
162   # prevents datamanager from trying to garbage-collect recently
163   # written blocks while clients are still holding valid signatures.
164   #
165   # The default is 2 weeks.
166   blob_signature_ttl: 1209600
167
168   # Default lifetime for ephemeral collections: 2 weeks.
169   default_trash_lifetime: 1209600
170
171   # Maximum size (in bytes) allowed for a single API request.  This
172   # limit is published in the discovery document for use by clients.
173   # Note: You must separately configure the upstream web server or
174   # proxy to actually enforce the desired maximum request size on the
175   # server side.
176   max_request_size: 134217728
177
178   # Limit the number of bytes read from the database during an index
179   # request (by retrieving and returning fewer rows than would
180   # normally be returned in a single response).
181   # Note 1: This setting never reduces the number of returned rows to
182   # zero, no matter how big the first data row is.
183   # Note 2: Currently, this only limits the
184   # arvados.v1.collections.list API (GET /arvados/v1/collections), and
185   # only takes the size of manifest_text into account. Other fields
186   # (e.g., "properties" hashes) are not counted against this limit
187   # when returning collections, and the limit is not applied at all
188   # for other data types.
189   max_index_database_read: 134217728
190
191   # When you run the db:delete_old_job_logs task, it will find jobs that
192   # have been finished for at least this many seconds, and delete their
193   # stderr logs from the logs table.
194   clean_job_log_rows_after: <%= 30.days %>
195
196   # The maximum number of compute nodes that can be in use simultaneously
197   # If this limit is reduced, any existing nodes with slot number >= new limit
198   # will not be counted against the new limit. In other words, the new limit
199   # won't be strictly enforced until those nodes with higher slot numbers
200   # go down.
201   max_compute_nodes: 64
202
203   # These two settings control how frequently log events are flushed to the
204   # database.  Log lines are buffered until either crunch_log_bytes_per_event
205   # has been reached or crunch_log_seconds_between_events has elapsed since
206   # the last flush.
207   crunch_log_bytes_per_event: 4096
208   crunch_log_seconds_between_events: 1
209
210   # The sample period for throttling logs, in seconds.
211   crunch_log_throttle_period: 60
212
213   # Maximum number of bytes that job can log over crunch_log_throttle_period
214   # before being silenced until the end of the period.
215   crunch_log_throttle_bytes: 65536
216
217   # Maximum number of lines that job can log over crunch_log_throttle_period
218   # before being silenced until the end of the period.
219   crunch_log_throttle_lines: 1024
220
221   # Maximum bytes that may be logged by a single job.  Log bytes that are
222   # silenced by throttling are not counted against this total.
223   crunch_limit_log_bytes_per_job: 67108864
224
225
226   ###
227   ### Crunch, DNS & compute node management
228   ###
229
230   # Docker image to be used when none found in runtime_constraints of a job
231   default_docker_image_for_jobs: false
232
233   # :none or :slurm_immediate
234   crunch_job_wrapper: :none
235
236   # username, or false = do not set uid when running jobs.
237   crunch_job_user: crunch
238
239   # The web service must be able to create/write this file, and
240   # crunch-job must be able to stat() it.
241   crunch_refresh_trigger: /tmp/crunch_refresh_trigger
242
243   # Path to dns server configuration directory
244   # (e.g. /etc/unbound.d/conf.d). If false, do not write any config
245   # files or touch restart.txt (see below).
246   dns_server_conf_dir: false
247
248   # Template file for the dns server host snippets. See
249   # unbound.template in this directory for an example. If false, do
250   # not write any config files.
251   dns_server_conf_template: false
252
253   # String to write to {dns_server_conf_dir}/restart.txt (with a
254   # trailing newline) after updating local data. If false, do not
255   # open or write the restart.txt file.
256   dns_server_reload_command: false
257
258   # Command to run after each DNS update. Template variables will be
259   # substituted; see the "unbound" example below. If false, do not run
260   # a command.
261   dns_server_update_command: false
262
263   ## Example for unbound:
264   #dns_server_conf_dir: /etc/unbound/conf.d
265   #dns_server_conf_template: /path/to/your/api/server/config/unbound.template
266   ## ...plus one of the following two methods of reloading:
267   #dns_server_reload_command: unbound-control reload
268   #dns_server_update_command: echo %{hostname} %{hostname}.%{uuid_prefix} %{hostname}.%{uuid_prefix}.arvadosapi.com %{ptr_domain} | xargs -n 1 unbound-control local_data_remove && unbound-control local_data %{hostname} IN A %{ip_address} && unbound-control local_data %{hostname}.%{uuid_prefix} IN A %{ip_address} && unbound-control local_data %{hostname}.%{uuid_prefix}.arvadosapi.com IN A %{ip_address} && unbound-control local_data %{ptr_domain}. IN PTR %{hostname}.%{uuid_prefix}.arvadosapi.com
269
270   compute_node_domain: false
271   compute_node_nameservers:
272     - 192.168.1.1
273
274   # Hostname to assign to a compute node when it sends a "ping" and the
275   # hostname in its Node record is nil.
276   # During bootstrapping, the "ping" script is expected to notice the
277   # hostname given in the ping response, and update its unix hostname
278   # accordingly.
279   # If false, leave the hostname alone (this is appropriate if your compute
280   # nodes' hostnames are already assigned by some other mechanism).
281   #
282   # One way or another, the hostnames of your node records should agree
283   # with your DNS records and your /etc/slurm-llnl/slurm.conf files.
284   #
285   # Example for compute0000, compute0001, ....:
286   # assign_node_hostname: compute%<slot_number>04d
287   # (See http://ruby-doc.org/core-2.2.2/Kernel.html#method-i-format for more.)
288   assign_node_hostname: compute%<slot_number>d
289
290
291   ###
292   ### Remaining assorted configuration options.
293   ###
294
295   arvados_theme: default
296
297   # Permit insecure (OpenSSL::SSL::VERIFY_NONE) connections to the Single Sign
298   # On (sso) server.  Should only be enabled during development when the SSO
299   # server is using a self-signed cert.
300   sso_insecure: false
301
302   ## Set Time.zone default to the specified zone and make Active
303   ## Record auto-convert to this zone.  Run "rake -D time" for a list
304   ## of tasks for finding time zone names. Default is UTC.
305   #time_zone: Central Time (US & Canada)
306
307   ## Default encoding used in templates for Ruby 1.9.
308   encoding: utf-8
309
310   # Enable the asset pipeline
311   assets.enabled: true
312
313   # Version of your assets, change this if you want to expire all your assets
314   assets.version: "1.0"
315
316   # Allow clients to create collections by providing a manifest with
317   # unsigned data blob locators. IMPORTANT: This effectively disables
318   # access controls for data stored in Keep: a client who knows a hash
319   # can write a manifest that references the hash, pass it to
320   # collections.create (which will create a permission link), use
321   # collections.get to obtain a signature for that data locator, and
322   # use that signed locator to retrieve the data from Keep. Therefore,
323   # do not turn this on if your users expect to keep data private from
324   # one another!
325   permit_create_collection_with_unsigned_manifest: false
326
327   default_openid_prefix: https://www.google.com/accounts/o8/id
328
329   # source_version
330   source_version: "<%= `git log -n 1 --format=%h`.strip %>"
331   local_modified: false
332
333
334 development:
335   force_ssl: false
336   cache_classes: false
337   whiny_nils: true
338   consider_all_requests_local: true
339   action_controller.perform_caching: false
340   action_mailer.raise_delivery_errors: false
341   action_mailer.perform_deliveries: false
342   active_support.deprecation: :log
343   action_dispatch.best_standards_support: :builtin
344   active_record.mass_assignment_sanitizer: :strict
345   active_record.auto_explain_threshold_in_seconds: 0.5
346   assets.compress: false
347   assets.debug: true
348   local_modified: "<%= '-modified' if `git status -s` != '' %>"
349
350 production:
351   force_ssl: true
352   cache_classes: true
353   consider_all_requests_local: false
354   action_controller.perform_caching: true
355   serve_static_assets: false
356   assets.compress: true
357   assets.compile: false
358   assets.digest: true
359
360 test:
361   force_ssl: false
362   cache_classes: true
363   serve_static_assets: true
364   static_cache_control: public, max-age=3600
365   whiny_nils: true
366   consider_all_requests_local: true
367   action_controller.perform_caching: false
368   action_dispatch.show_exceptions: false
369   action_controller.allow_forgery_protection: false
370   action_mailer.delivery_method: :test
371   active_support.deprecation: :stderr
372   active_record.mass_assignment_sanitizer: :strict
373   uuid_prefix: zzzzz
374   sso_app_id: arvados-server
375   sso_app_secret: <%= rand(2**512).to_s(36) %>
376   sso_provider_url: http://localhost:3002
377   secret_token: <%= rand(2**512).to_s(36) %>
378   blob_signing_key: zfhgfenhffzltr9dixws36j1yhksjoll2grmku38mi7yxd66h5j4q9w4jzanezacp8s6q0ro3hxakfye02152hncy6zml2ed0uc
379   user_profile_notification_address: arvados@example.com
380   workbench_address: https://localhost:3001/
381   git_repositories_dir: <%= Rails.root.join 'tmp', 'git', 'test' %>
382   git_internal_dir: <%= Rails.root.join 'tmp', 'internal.git' %>