X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/46b11ba2ed71e2c074e9e6c8f5b9f7a003e7067f..f853c2c7f2283b57a4f215aeb288b2842e3d1843:/apps/workbench/config/application.default.yml diff --git a/apps/workbench/config/application.default.yml b/apps/workbench/config/application.default.yml index 1650e12f4d..ed2683d81a 100644 --- a/apps/workbench/config/application.default.yml +++ b/apps/workbench/config/application.default.yml @@ -1,45 +1,6 @@ # Do not use this file for site configuration. Create application.yml # instead (see application.yml.example). -<% -# If you change any of the code in this block, you'll probably also want -# to update it in API server's application.default.yml. -def info_cmd(*args, &block) - IO.popen(args, "r", chdir: Rails.root, err: "/dev/null", &block) -end - -source_version = "" -local_modified = false -if Rails.env == "production" - # Read the version from our package's git-commit.version file, if available. - begin - source_version = IO.read(Rails.root.join("git-commit.version")).strip - rescue Errno::ENOENT - end -end - -if source_version.empty? - begin - status_output = false - info_cmd("git", "status", "-s") do |git_pipe| - git_pipe.each_line do |_| - status_output = true - # Continue reading the pipe so git doesn't get SIGPIPE. - end - end - if $?.success? - info_cmd("git", "log", "-n1", "--format=%H") do |git_pipe| - git_pipe.each_line do |line| - source_version = line.chomp - end - end - local_modified = status_output - end - rescue SystemCallError - end -end -%> - # Below is a sample setting for diagnostics testing. # Configure workbench URL as "arvados_workbench_url" # Configure test user tokens as "user_tokens". @@ -84,7 +45,6 @@ development: assets.debug: true profiling_enabled: true site_name: Arvados Workbench (dev) - local_modified: "<%= local_modified ? '-modified' : '' %>" # API server configuration arvados_login_base: ~ @@ -222,9 +182,11 @@ common: # the profile page. user_profile_form_message: Welcome to Arvados. All required fields must be completed before you can proceed. - # source_version - source_version: "<%= source_version[0...8] %>" - local_modified: false + # Override the automatic version string. With the default value of + # false, the version string is read from git-commit.version in + # Rails.root (included in vendor packages) or determined by invoking + # "git log". + source_version: false # report notification to and from addresses issue_reporter_email_from: arvados@example.com @@ -251,9 +213,16 @@ common: # when anonymous_user_token is configured, show public projects page enable_public_projects_page: true + # by default, disable the "Getting Started" popup which is specific to the public beta install + enable_getting_started_popup: false + # Ask Arvados API server to compress its response payloads. api_response_compression: true + # Timeouts for API requests. + api_client_connect_timeout: 120 + api_client_receive_timeout: 300 + # ShellInABox service endpoint URL for a given VM. If false, do not # offer web shell logins. # @@ -263,3 +232,57 @@ common: # E.g., using a name-based proxy server to forward connections to shell hosts: # https://%{hostname}.webshell.uuid_prefix.arvadosapi.com/ shell_in_a_box_url: false + + # Format of preview links. If false, use keep_web_download_url + # instead, and disable inline preview. If both are false, use + # Workbench's built-in file download/preview mechanism. + # + # Examples: + # keep_web_url: https://%{uuid_or_pdh}.collections.uuid_prefix.arvadosapi.com + # keep_web_url: https://%{uuid_or_pdh}--collections.uuid_prefix.arvadosapi.com + # + # Example supporting only public data and collection-sharing links + # (other data will be handled as downloads via keep_web_download_url): + # keep_web_url: https://collections.uuid_prefix.arvadosapi.com/c=%{uuid_or_pdh} + keep_web_url: false + + # Format of download links. If false, use keep_web_url with + # disposition=attachment query param. + # + # The host part of the keep_web_download_url value here must match + # the -attachment-only-host argument given to keep-web: if + # keep_web_download_url is "https://FOO.EXAMPLE/c=..." then keep-web + # must run with "-attachment-only-host=FOO.EXAMPLE". + # + # If keep_web_download_url is false, and keep_web_url uses a + # single-origin form, then Workbench will show an error page + # when asked to download or preview private data. + # + # Example: + # keep_web_download_url: https://download.uuid_prefix.arvadosapi.com/c=%{uuid_or_pdh} + keep_web_download_url: false + + # In "trust all content" mode, Workbench will redirect download + # requests to keep-web, even in the cases when keep-web would have + # to expose XSS vulnerabilities in order to handle the redirect. + # + # When enabling this setting, the -trust-all-content flag on the + # keep-web server must also be enabled. For more detail, see + # https://godoc.org/github.com/curoverse/arvados/services/keep-web + # + # This setting has no effect in the recommended configuration, where + # the host part of keep_web_url begins with %{uuid_or_pdh}: in this + # case XSS protection is provided by browsers' same-origin policy. + # + # The default setting (false) is appropriate for a multi-user site. + trust_all_content: false + + # Maximum number of historic log records of a running job to fetch + # and display in the Log tab, while subscribing to web sockets. + running_job_log_records_to_fetch: 2000 + + # In systems with many shared projects, dashboard loading can be + # slow due to collections indexing; use the following parameters + # to suppress certain properties from dashboard + show_recent_collections_on_dashboard: true + show_user_notifications_on_dashboard: true