From 095f596a06a391daa83236dbb0e059d6c59e0bd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Tue, 13 Apr 2021 10:15:47 +0000 Subject: [PATCH] move ports to dedicated file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jörn Friedrich Dreyer --- docs/extensions/storage/_index.md | 34 ------------------------- docs/extensions/storage/ports.md | 42 +++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 34 deletions(-) create mode 100644 docs/extensions/storage/ports.md diff --git a/docs/extensions/storage/_index.md b/docs/extensions/storage/_index.md index c76156a528..e23b1bfc0b 100644 --- a/docs/extensions/storage/_index.md +++ b/docs/extensions/storage/_index.md @@ -10,37 +10,3 @@ geekdocCollapseSection: true 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 | diff --git a/docs/extensions/storage/ports.md b/docs/extensions/storage/ports.md new file mode 100644 index 0000000000..c676fb31c5 --- /dev/null +++ b/docs/extensions/storage/ports.md @@ -0,0 +1,42 @@ +--- +title: "Ports" +date: 2018-05-02T00:00:00+00:00 +weight: 41 +geekdocRepo: https://github.com/owncloud/ocis +geekdocEditPath: edit/master/docs/extensions/storage +geekdocFilePath: ports.md +geekdocCollapseSection: true +--- + +Currently, every service needs to be configured with a port so ocis can start them on localhost. We will automate this by using a service registry for more services until only the proxy has to be configured with a public port. + +For now, tho storage service uses these ports to preconfigure the services: + +| port | service | +|-----------|-----------------------------------------------| +| 9109 | health, used by cli? | +| 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 | +| 9154 | storage home grpc | +| 9155 | storage home http | +| 9156 | storage home debug | +| 9157 | storage users grpc | +| 9158 | storage users http | +| 9159 | storage users debug | +| 9160 | groups | +| 9161 | groups debug | +| 9178 | storage public link | +| 9179 | storage public link data | +| 9215 | storage meta grpc | +| 9216 | storage meta http | +| 9217 | storage meta debug |