From e0feb99189dda3a347fab4d90435ec07226395a4 Mon Sep 17 00:00:00 2001 From: akhil Date: Fri, 12 Nov 2021 13:52:44 +0530 Subject: [PATCH 1/2] Added selfhost tag and privacy writeup --- README.md | 9 +++++++++ templates/docker-compose/docker-compose.yml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4541433..3d417d7 100644 --- a/README.md +++ b/README.md @@ -168,6 +168,15 @@ Your credentials for postfix admin (https://mail.yourdomain.com) are: user/pass - Post installation, please navigate to https://$DOMAIN/settings/admin/overview to check if there are any configuration warnings related to your installation - Please note that we have not used http2 protocol in nginx because of nextcloud's notably [slow performance](https://github.com/nextcloud/server/issues/25297) with http2 +## Privacy + +- The default behaviour of nextcloud is that all users on a server can see and share with each other. As this may make sense on a company or family environment, we keep this behaviour in the selfhost image tag. +- For public instances like our [ecloud](https://ecloud.global), we provide the selfhost-privacy tag with the enhanced privacy approach. +- Some of the improvements are: + - Users cannot find each other on search unless they use the full email address + - User statuses are not available globally for other users to view + - Global contacts menu for searching contacts is disabled + ## Setting up /e/ OS with /e/ selfhosting For a new installation, enter login (email address - username@yourdomain.com), password and selfhosting domain FQDN in the fist time usage wizard. diff --git a/templates/docker-compose/docker-compose.yml b/templates/docker-compose/docker-compose.yml index 0f2d0e2..87206a9 100644 --- a/templates/docker-compose/docker-compose.yml +++ b/templates/docker-compose/docker-compose.yml @@ -123,7 +123,7 @@ services: - "${DOMAIN}:${NC_HOST_IP}" nextcloud: - image: registry.gitlab.e.foundation/e/infra/ecloud/nextcloud:316db4e0 + image: registry.gitlab.e.foundation/e/infra/ecloud/nextcloud:selfhost container_name: nextcloud restart: always networks: -- GitLab From 82c0cc05eef474b0caaeb7250769aa5538e4d38e Mon Sep 17 00:00:00 2001 From: akhil Date: Fri, 12 Nov 2021 13:54:47 +0530 Subject: [PATCH 2/2] Put tag names in code quotes --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3d417d7..1b89c0e 100644 --- a/README.md +++ b/README.md @@ -170,8 +170,8 @@ Your credentials for postfix admin (https://mail.yourdomain.com) are: user/pass ## Privacy -- The default behaviour of nextcloud is that all users on a server can see and share with each other. As this may make sense on a company or family environment, we keep this behaviour in the selfhost image tag. -- For public instances like our [ecloud](https://ecloud.global), we provide the selfhost-privacy tag with the enhanced privacy approach. +- The default behaviour of nextcloud is that all users on a server can see and share with each other. As this may make sense on a company or family environment, we keep this behaviour in the `selfhost` image tag. +- For public instances like our [ecloud](https://ecloud.global), we provide the `selfhost-privacy` tag with the enhanced privacy approach. - Some of the improvements are: - Users cannot find each other on search unless they use the full email address - User statuses are not available globally for other users to view -- GitLab