github.com/cs3org/reva/v2@v2.27.7/tests/oc-integration-tests/local/storage-users-a-f.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:19000"
    10  
    11  [log]
    12  #level = "warn"
    13  #mode = "json"
    14  
    15  [grpc]
    16  address = "0.0.0.0:11010"
    17  
    18  [grpc.tls_settings]
    19  enabled = true
    20  
    21  # This is a storage provider that grants direct access to the wrapped storage
    22  # we have a locally running dataprovider
    23  [grpc.services.storageprovider]
    24  driver = "ocis"
    25  expose_data_server = true
    26  data_server_url = "http://localhost:11011/data"
    27  
    28  [grpc.services.storageprovider.drivers.ocis]
    29  root = "/tmp/reva/data-a-f"
    30  treetime_accounting = true
    31  treesize_accounting = true
    32  permissionssvc = "localhost:10000"
    33  
    34  # we have a locally running dataprovider
    35  [http]
    36  address = "0.0.0.0:11011"
    37  
    38  [http.services.dataprovider]
    39  driver = "ocis"
    40  temp_folder = "/tmp/reva/tmp"
    41  
    42  [http.services.dataprovider.drivers.ocis]
    43  root = "/tmp/reva/data-a-f"
    44  treetime_accounting = true
    45  treesize_accounting = true
    46  permissionssvc = "localhost:10000"