X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/9f4a1c3767bfffed94e90fa6737e58fa13fb5a21..bfd4fc641457a4786a5c14b7ae574acc65e1f2b8:/doc/install/install-keep-web.html.textile.liquid diff --git a/doc/install/install-keep-web.html.textile.liquid b/doc/install/install-keep-web.html.textile.liquid index 1ac387b645..b797c1958e 100644 --- a/doc/install/install-keep-web.html.textile.liquid +++ b/doc/install/install-keep-web.html.textile.liquid @@ -20,7 +20,7 @@ SPDX-License-Identifier: CC-BY-SA-3.0 h2(#introduction). Introduction -The Keep-web server provides read/write HTTP (WebDAV) access to files stored in Keep. This makes it easy to access files in Keep from a browser, or mount Keep as a network folder using WebDAV support in various operating systems. It serves public data to unauthenticated clients, and serves private data to clients that supply Arvados API tokens. It can be installed anywhere with access to Keep services, typically behind a web proxy that provides TLS support. See the "godoc page":http://godoc.org/github.com/curoverse/arvados/services/keep-web for more detail. +The Keep-web server provides read/write access to files stored in Keep using WebDAV and S3 protocols. This makes it easy to access files in Keep from a browser, or mount Keep as a network folder using WebDAV support in various operating systems. It serves public data to unauthenticated clients, and serves private data to clients that supply Arvados API tokens. It can be installed anywhere with access to Keep services, typically behind a web proxy that provides TLS support. See the "godoc page":http://godoc.org/github.com/curoverse/arvados/services/keep-web for more detail. h2(#dns). Configure DNS @@ -61,6 +61,8 @@ Collections can be served from their own subdomain: +This option is preferred if you plan to access Keep using third-party S3 client software, because it accommodates S3 virtual host-style requests and path-style requests without any special client configuration. + h4. Under the main domain Alternately, they can go under the main domain by including @--@: @@ -91,7 +93,7 @@ h2. Set InternalURLs
    Services:
       WebDAV:
         InternalURLs:
-          http://"localhost:9002": {}
+          http://localhost:9002: {}
 
@@ -121,7 +123,7 @@ upstream keep-web { } server { - listen *:443 ssl; + listen 443 ssl; server_name download.ClusterID.example.com collections.ClusterID.example.com *.collections.ClusterID.example.com @@ -142,6 +144,7 @@ server { client_max_body_size 0; proxy_http_version 1.1; proxy_request_buffering off; + proxy_max_temp_file_size 0; } }