From 19b825d716fc7c3110940d0000bea7ad53236a25 Mon Sep 17 00:00:00 2001 From: Akhil Date: Thu, 26 Jan 2023 16:40:49 +0530 Subject: [PATCH 1/2] Add instructions to set defaultapp back to default dash --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 55c7b8a..abfe586 100644 --- a/README.md +++ b/README.md @@ -169,6 +169,9 @@ Your credentials for postfix admin (https://mail.yourdomain.com) are: user/pass - `mail.$DOMAIN`: Administrate email and create accounts ([postfixadmin](http://postfixadmin.sourceforge.net/)) when not using the "self service" `welcome.$DOMAIN` - this requires you to set a intermediate password during account creation. - 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 +- The default app is set to `ecloud-dashboard`. Steps to go back to the nextcloud dashboard are: + - `docker-compose exec -T --user www-data nextcloud php /var/www/html/occ app:enable dashboard` + - `docker-compose exec -T --user www-data nextcloud php occ config:system:set defaultapp --value='dashboard'` ## Privacy -- GitLab From 42ba40055a2a14344658b0c89abaf5c1215f8288 Mon Sep 17 00:00:00 2001 From: Akhil Date: Thu, 26 Jan 2023 16:44:56 +0530 Subject: [PATCH 2/2] Fix occ command path --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index abfe586..c021cdf 100644 --- a/README.md +++ b/README.md @@ -171,7 +171,7 @@ Your credentials for postfix admin (https://mail.yourdomain.com) are: user/pass - 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 - The default app is set to `ecloud-dashboard`. Steps to go back to the nextcloud dashboard are: - `docker-compose exec -T --user www-data nextcloud php /var/www/html/occ app:enable dashboard` - - `docker-compose exec -T --user www-data nextcloud php occ config:system:set defaultapp --value='dashboard'` + - `docker-compose exec -T --user www-data nextcloud php /var/www/html/occ config:system:set defaultapp --value='dashboard'` ## Privacy -- GitLab