github.com/cs3org/reva/v2@v2.27.7/tests/oc-integration-tests/local-mesh/storage-users.toml (about)

     1  # This config file will start a reva service that:
     2  # - uses the ocis driver to serve users (/users)
     3  # - serves the storage provider on grpc port 11000
     4  # - serves http dataprovider for this storage on port 11001
     5  #   - /data - dataprovider: file up and download
     6  
     7  [shared]
     8  jwt_secret = "Pive-Fumkiu4"
     9  gatewaysvc = "localhost:39000"
    10  
    11  [grpc]
    12  address = "0.0.0.0:31000"
    13  
    14  # This is a storage provider that grants direct access to the wrapped storage
    15  # we have a locally running dataprovider
    16  [grpc.services.storageprovider]
    17  driver = "ocis"
    18  expose_data_server = true
    19  data_server_url = "http://localhost:31001/data"
    20  
    21  [grpc.services.storageprovider.drivers.ocis]
    22  root = "/var/tmp/reva/data"
    23  treetime_accounting = true
    24  treesize_accounting = true
    25  
    26  [http]
    27  address = "0.0.0.0:31001"
    28  
    29  [http.services.dataprovider]
    30  driver = "ocis"
    31  temp_folder = "/var/tmp/reva/tmp"
    32  
    33  [http.services.dataprovider.drivers.ocis]
    34  root = "/var/tmp/reva/data"
    35  treetime_accounting = true
    36  treesize_accounting = true