1 # Do not use this file for site configuration. Create application.yml
2 # instead (see application.yml.example).
8 consider_all_requests_local: true
9 action_controller.perform_caching: false
10 action_mailer.raise_delivery_errors: false
11 action_mailer.perform_deliveries: false
12 active_support.deprecation: :log
13 action_dispatch.best_standards_support: :builtin
14 active_record.mass_assignment_sanitizer: :strict
15 active_record.auto_explain_threshold_in_seconds: 0.5
16 assets.compress: false
18 local_modified: "<%= '-modified' if `git status -s` != '' %>"
23 consider_all_requests_local: false
24 action_controller.perform_caching: true
25 serve_static_assets: false
33 serve_static_assets: true
34 static_cache_control: public, max-age=3600
36 consider_all_requests_local: true
37 action_controller.perform_caching: false
38 action_dispatch.show_exceptions: false
39 action_controller.allow_forgery_protection: false
40 action_mailer.delivery_method: :test
41 active_support.deprecation: :stderr
42 active_record.mass_assignment_sanitizer: :strict
44 secret_token: <%= rand(2**512).to_s(36) %>
45 blob_signing_key: zfhgfenhffzltr9dixws36j1yhksjoll2grmku38mi7yxd66h5j4q9w4jzanezacp8s6q0ro3hxakfye02152hncy6zml2ed0uc
46 user_profile_notification_address: arvados@example.com
47 workbench_address: https://localhost:3001/
50 # The prefix used for all database identifiers to identify the record as
51 # originating from this site. Must be exactly 5 alphanumeric characters
52 # (lowercase ASCII letters and digits).
53 uuid_prefix: <%= Digest::MD5.hexdigest(`hostname`).to_i(16).to_s(36)[0..4] %>
55 # If not false, this is the hostname that will be used for root_url and
56 # advertised in the discovery document. By default, use the default Rails
57 # logic for deciding on a hostname.
60 # If not false, this is the hostname that will be used to generate fetch_url
61 # and push_url for git repositories. By default, this will be
62 # git.(uuid_prefix).arvadosapi.com
65 # If this is not false, HTML requests at the API server's root URL
66 # are redirected to this location, and it is provided in the text of
67 # user activation notification email messages to remind them where
69 workbench_address: false
71 # Git repositories must be readable by api server, or you won't be
72 # able to submit crunch jobs. To pass the test suites, put a clone
73 # of the arvados tree in {git_repositories_dir}/arvados.git or
74 # {git_repositories_dir}/arvados/.git
75 git_repositories_dir: /var/lib/arvados/git
77 # If an arv-git-httpd service is running, advertise it in the
78 # discovery document by adding its public URI base here. Example:
79 # https://git.xxxxx.arvadosapi.com
82 # This is a (bare) repository that stores commits used in jobs. When a job
83 # runs, the source commits are first fetched into this repository, then this
84 # repository is used to deploy to compute nodes. This should NOT be a
85 # subdirectory of {git_repositiories_dir}.
86 git_internal_dir: /var/lib/arvados/internal.git
88 # :none or :slurm_immediate
89 crunch_job_wrapper: :none
91 # username, or false = do not set uid when running jobs.
92 crunch_job_user: crunch
94 # The web service must be able to create/write this file, and
95 # crunch-job must be able to stat() it.
96 crunch_refresh_trigger: /tmp/crunch_refresh_trigger
98 # These two settings control how frequently log events are flushed to the
99 # database. Log lines are buffered until either crunch_log_bytes_per_event
100 # has been reached or crunch_log_seconds_between_events has elapsed since
102 crunch_log_bytes_per_event: 4096
103 crunch_log_seconds_between_events: 1
105 # The sample period for throttling logs, in seconds.
106 crunch_log_throttle_period: 60
108 # Maximum number of bytes that job can log over crunch_log_throttle_period
109 # before being silenced until the end of the period.
110 crunch_log_throttle_bytes: 65536
112 # Maximum number of lines that job can log over crunch_log_throttle_period
113 # before being silenced until the end of the period.
114 crunch_log_throttle_lines: 1024
116 # Maximum bytes that may be logged by a single job. Log bytes that are
117 # silenced by throttling are not counted against this total.
118 crunch_limit_log_bytes_per_job: 67108864
120 # Path to dns server configuration directory (e.g. /etc/unbound.d/conf.d),
121 # or false = do not update dns server data.
122 dns_server_conf_dir: false
124 # Template for the dns server host snippets. See unbound.template in this directory for
125 # an example. Set to false to disable.
126 dns_server_conf_template: false
128 # Dns server reload command, or false = do not reload dns server after data change
129 dns_server_reload_command: false
131 # Example for unbound
132 #dns_server_conf_dir: /etc/unbound/conf.d
133 #dns_server_conf_template: /path/to/your/api/server/config/unbound.template
134 #dns_server_reload_command: /etc/init.d/unbound reload
136 compute_node_domain: false
137 compute_node_nameservers:
140 # The version below is suitable for AWS.
141 # To use it, copy it to your application.yml, uncomment, and change <%# to <%=
142 # compute_node_nameservers: <%#
144 # ['local', 'public'].collect do |iface|
145 # Net::HTTP.get(URI("http://169.254.169.254/latest/meta-data/#{iface}-ipv4")).match(/^[\d\.]+$/)[0]
146 # end << '172.16.0.23'
151 # When new_users_are_active is set to true, the user agreement check is skipped.
152 new_users_are_active: false
154 admin_notifier_email_from: arvados@example.com
155 email_subject_prefix: "[ARVADOS] "
156 user_notifier_email_from: arvados@example.com
157 new_user_notification_recipients: [ ]
158 new_inactive_user_notification_recipients: [ ]
160 # The e-mail address of the user you would like to become marked as an admin
161 # user on their first login.
162 # In the default configuration, authentication happens through the Arvados SSO
163 # server, which uses openid against Google's servers, so in that case this
164 # should be an address associated with a Google account.
165 auto_admin_user: false
167 # If auto_admin_first_user is set to true, the first user to log in when no
168 # other admin users exist will automatically become an admin user.
169 auto_admin_first_user: false
171 ## Set Time.zone default to the specified zone and make Active
172 ## Record auto-convert to this zone. Run "rake -D time" for a list
173 ## of tasks for finding time zone names. Default is UTC.
174 #time_zone: Central Time (US & Canada)
176 ## Default encoding used in templates for Ruby 1.9.
179 # Enable the asset pipeline
182 # Version of your assets, change this if you want to expire all your assets
183 assets.version: "1.0"
185 arvados_theme: default
187 # The ARVADOS_WEBSOCKETS environment variable determines whether to
188 # serve http, websockets, or both.
190 # If ARVADOS_WEBSOCKETS="true", http and websockets are both served
191 # from the same process.
193 # If ARVADOS_WEBSOCKETS="ws-only", only websockets is served.
195 # If ARVADOS_WEBSOCKETS="false" or not set at all, only http is
196 # served. In this case, you should have a separate process serving
197 # websockets, and the address of that service should be given here
198 # as websocket_address.
200 # If websocket_address is false (which is the default), the
201 # discovery document will tell clients to use the current server as
202 # the websocket service, or (if the current server does not have
203 # websockets enabled) not to use websockets at all.
205 # Example: Clients will connect to the specified endpoint.
206 #websocket_address: wss://127.0.0.1:3333/websocket
207 # Default: Clients will connect to this server if it's running
208 # websockets, otherwise none at all.
209 websocket_address: false
211 # blob_signing_key is a string of alphanumeric characters used to
212 # generate permission signatures for Keep locators. It must be
213 # identical to the permission key given to Keep. IMPORTANT: This is
214 # a site secret. It should be at least 50 characters.
217 # Amount of time (in seconds) for which a blob permission signature
218 # remains valid. Default: 2 weeks (1209600 seconds)
219 blob_signing_ttl: 1209600
221 # Allow clients to create collections by providing a manifest with
222 # unsigned data blob locators. IMPORTANT: This effectively disables
223 # access controls for data stored in Keep: a client who knows a hash
224 # can write a manifest that references the hash, pass it to
225 # collections.create (which will create a permission link), use
226 # collections.get to obtain a signature for that data locator, and
227 # use that signed locator to retrieve the data from Keep. Therefore,
228 # do not turn this on if your users expect to keep data private from
230 permit_create_collection_with_unsigned_manifest: false
232 # secret_token is a string of alphanumeric characters used by Rails
233 # to sign session tokens. IMPORTANT: This is a site secret. It
234 # should be at least 50 characters.
237 # email address to which mail should be sent when the user creates profile for the first time
238 user_profile_notification_address: false
240 default_openid_prefix: https://www.google.com/accounts/o8/id
242 # Config parameters to automatically setup new users.
243 # The params auto_setup_new_users_with_* are meaningful only when auto_setup_new_users is turned on.
244 # auto_setup_name_blacklist is a list of usernames to be blacklisted for auto setup.
245 auto_setup_new_users: false
246 auto_setup_new_users_with_vm_uuid: false
247 auto_setup_new_users_with_repository: false
248 auto_setup_name_blacklist: [arvados, git, gitolite, gitolite-admin, root, syslog]
251 source_version: "<%= `git log -n 1 --format=%h`.strip %>"
252 local_modified: false
254 # Default lifetime for ephemeral collections: 2 weeks.
255 default_trash_lifetime: 1209600
257 # Permit insecure (OpenSSL::SSL::VERIFY_NONE) connections to the Single Sign
258 # On (sso) server. Should only be enabled during development when the SSO
259 # server is using a self-signed cert.
262 # Default replication level for collections. This is used when a
263 # collection's replication_desired attribute is nil.
264 default_collection_replication: 2
266 # Maximum size (in bytes) allowed for a single API request that will be
267 # published in the discovery document for use by clients.
268 # Note you must separately configure the upstream web server or proxy to
269 # actually enforce the desired maximum request size on the server side.
270 max_request_size: 134217728