1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nextcloud_ynh.git synced 2024-09-03 19:55:57 +02:00

Merge branch 'testing' into enh_update_19.0.0

This commit is contained in:
Kayou 2020-08-10 13:07:22 +02:00 committed by GitHub
commit 3d69f493a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 6 deletions

View file

@ -10,7 +10,7 @@ If you don't have YunoHost, please see [here](https://yunohost.org/#/install) to
## Overview ## Overview
[Nextcloud](https://nextcloud.com) gives you freedom and control over your [Nextcloud](https://nextcloud.com) gives you freedom and control over your
own data. A personal cloud which run on your own server. With Nextcloud own data. A personal cloud which runs on your own server. With Nextcloud
you can synchronize your files over your devices. you can synchronize your files over your devices.
@ -48,19 +48,19 @@ To install and configure it:
In addition to Nextcloud core features, the following are made available with In addition to Nextcloud core features, the following are made available with
this package: this package:
* Integrate with YunoHost users and SSO - i.e logout button * Integrate with YunoHost users and SSO - i.e. logout button
* Allow one user to be the administrator (set at the installation) * Allow one user to be the administrator (set at the installation)
* Allow multiple instances of this application * Allow multiple instances of this application
* Optionally access the user home folder from Nextcloud files (set at the * Optionally access the user home folder from Nextcloud files (set at the
installation, the sharing is enabled by default) installation, the sharing is enabled by default)
* Serve `/.well-known` paths for CalDAV and CardDAV on the domain only if it's * Serve `/.well-known` paths for CalDAV and CardDAV on the domain only if it's
not already served - i.e by Baïkal not already served - i.e. by Baïkal
#### Multi-users support #### Multi-users support
#### Supported architectures #### Supported architectures
* x86-64b - [![Build Status](https://ci-apps.yunohost.org/ci/logs/nextcloud%20%28Apps%29.svg)](https://ci-apps.yunohost.org/ci/apps/nextcloud/) * x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/nextcloud%20%28Apps%29.svg)](https://ci-apps.yunohost.org/ci/apps/nextcloud/)
* ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/nextcloud%20%28Apps%29.svg)](https://ci-apps-arm.yunohost.org/ci/apps/nextcloud/) * ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/nextcloud%20%28Apps%29.svg)](https://ci-apps-arm.yunohost.org/ci/apps/nextcloud/)
## Limitations ## Limitations
@ -94,7 +94,7 @@ If you need/want to use Nextcloud `occ` command¹, you need to be in `/var/www/n
**This is not considered as stable yet, please do it with care and only for **This is not considered as stable yet, please do it with care and only for
testing!** testing!**
This package handle the migration from ownCloud to Nextcloud. For that, your This package handles the migration from ownCloud to Nextcloud. For that, your
ownCloud application must be **up-to-date** in YunoHost. ownCloud application must be **up-to-date** in YunoHost.
You will then have to upgrade your ownCloud application with this repository. You will then have to upgrade your ownCloud application with this repository.

View file

@ -57,7 +57,9 @@ location ^~ __PATH__/ {
# Errors pages # Errors pages
error_page 403 __PATH__/core/templates/403.php; error_page 403 __PATH__/core/templates/403.php;
error_page 404 __PATH__/core/templates/404.php; # Don't set custom 404 error page, as nextcloud uses 404 codes with meaningful payload.
# Setting custom 404 page clears the payload and creates UI bugs
# error_page 404 __PATH__/core/templates/404.php;
location __PATH__/ { location __PATH__/ {
rewrite ^ __PATH__/index.php; rewrite ^ __PATH__/index.php;