Skip to content
This repository has been archived by the owner on Jan 18, 2021. It is now read-only.

Config refactor, add ocis storage, fix oc storage sharing #461

Merged
merged 14 commits into from
Sep 10, 2020
Merged
2 changes: 1 addition & 1 deletion .drone.star
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
config = {
'apiTests': {
'coreBranch': 'master',
'coreCommit': '1f5506549cbebdc910b6d24681278e9a210f6d82',
'coreCommit': 'dd8d46129616602f02a0740bb5cf83bd6b28aa19',
'numberOfParts': 2
}
}
Expand Down
8 changes: 8 additions & 0 deletions changelog/unreleased/config-cleanup.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Bugfix: Fix default configuration for accessing shares

The storage provider mounted at `/home` should always have EnableHome set to `true`. The other storage providers should have it set to `false`.

https://github.com/owncloud/product/issues/205
https://github.com/owncloud/ocis-reva/pull/461


8 changes: 8 additions & 0 deletions changelog/unreleased/storage-registry-rules.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Enhancement: Allow configuring arbitrary storage registry rules

We added a new config flag `storage-registry-rule` that can be given multiple times for the gateway to specify arbitrary storage registry rules. You can also use a comma separated list of rules in the `REVA_STORAGE_REGISTRY_RULES` environment variable.

https://github.com/owncloud/product/issues/193
https://github.com/owncloud/ocis-reva/pull/461


35 changes: 35 additions & 0 deletions docs/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,38 @@ geekdocFilePath: _index.md
---

This service provides an ocis extension that wraps [reva](https://github.com/cs3org/reva/) and adds an opinionated configuration to it.

It uses the port range 9140-9179 to preconfigure several services.

| port | service |
+------+---------+
| 9109 | health? |
| 9140 | frontend |
| 9141 | frontend debug |
| 9142 | gateway |
| 9143 | gateway debug |
| 9144 | users |
| 9145 | users debug |
| 9146 | authbasic |
| 9147 | authbasic debug |
| 9148 | authbearer |
| 9149 | authbearer debug |
| 9150 | sharing |
| 9151 | sharing debug |
| 9152 | storage root |
| 9153 | storage root debug |
| 9154 | storage home |
| 9155 | storage home debug |
| 9156 | storage home data |
| 9157 | storage home data debug |
| 9158 | storage eos |
| 9159 | storage eos debug |
| 9160 | storage eos data |
| 9161 | storage eos data debug |
| 9162 | storage oc |
| 9163 | storage oc debug |
| 9164 | storage oc data |
| 9165 | storage oc data debug |
| 9166-9177 | reserved for s3, wnd, custom + data providers |
| 9178 | storage public link |
| 9179 | storage public link data |
Loading