github.com/cs3org/reva/v2@v2.27.7/tests/oc-integration-tests/drone/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 # This is a storage provider that grants direct access to the wrapped storage 19 # we have a locally running dataprovider 20 [grpc.services.storageprovider] 21 driver = "ocis" 22 expose_data_server = true 23 data_server_url = "http://revad-services:11011/data" 24 25 [grpc.services.storageprovider.drivers.ocis] 26 root = "/drone/src/tmp/reva/data-a-f" 27 treetime_accounting = true 28 treesize_accounting = true 29 permissionssvc = "localhost:10000" 30 31 # we have a locally running dataprovider 32 [http] 33 address = "0.0.0.0:11011" 34 35 [http.services.dataprovider] 36 driver = "ocis" 37 temp_folder = "/var/tmp/reva/tmp" 38 39 [http.services.dataprovider.drivers.ocis] 40 root = "/drone/src/tmp/reva/data-a-f" 41 treetime_accounting = true 42 treesize_accounting = true 43 permissionssvc = "localhost:10000"