Merge pull request #22 from YunoHost-Apps/testing

testing 4.3.4~ynh1
This commit is contained in:
OniriCorpe 2024-01-30 03:21:55 +01:00 committed by GitHub
commit c93b59a2fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 34 additions and 13 deletions

View file

@ -19,7 +19,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
Cells V4 now provides secure, cloud-native, scalable, self-hosted, open-core document sharing and collaboration without putting your data at risk.
**Shipped version:** 4.3.1~ynh1
**Shipped version:** 4.3.4~ynh1
## Screenshots

View file

@ -19,7 +19,7 @@ Si vous navez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
Cells V4 offre désormais un partage et une collaboration de documents sécurisés, cloud natifs, évolutifs, auto-hébergés et open-core sans mettre vos données en danger.
**Version incluse :** 4.3.1~ynh1
**Version incluse :** 4.3.4~ynh1
## Captures décran

View file

@ -1,13 +1,34 @@
# https://pydio.com/en/docs/kb/deployment/running-cells-behind-nginx-reverse-proxy
# Allow any size file to be uploaded
client_max_body_size 0;
# Disable buffering
proxy_buffering off;
location / {
proxy_pass https://127.0.0.1:__PORT__;
# Uncomment this to enable gRPC and thus be able to use cells-sync
if ($http_content_type = "application/grpc") {
grpc_pass grpcs://127.0.0.1:__PORT_GRPC__;
}
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}
# Enable the websocket
location /ws/ {
proxy_pass https://127.0.0.1:__PORT__;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
# Necessary to use Collabora (online edition of office documents)
location /cool/ {
proxy_pass https://localhost:__PORT__;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}

View file

@ -7,7 +7,7 @@ name = "Pydio"
description.en = "File sharing platform"
description.fr = "Plateforme de partage de fichiers"
version = "4.3.1~ynh1"
version = "4.3.4~ynh1"
maintainers = ["julienmalik"]
@ -49,12 +49,12 @@ ram.runtime = "700M"
[resources.sources]
[resources.sources.main]
amd64.url = "https://download.pydio.com/pub/cells/release/4.3.1/linux-amd64/pydio-cells-4.3.1-linux-amd64.zip"
amd64.sha256 = "966337451cf007ff9294f15db830cda128162604bb44ccd91510fae292c790ee"
arm64.url = "https://download.pydio.com/pub/cells/release/4.3.1/linux-arm64/pydio-cells-4.3.1-linux-arm64.zip"
arm64.sha256 = "840d9a85e15892b52dd549152bef240015584b82feace9137e8b5b1660e80c43"
armhf.url = "https://download.pydio.com/pub/cells/release/4.3.1/linux-arm/pydio-cells-4.3.1-linux-arm.zip"
armhf.sha256 = "af200d58f3efd917bf8add2a0e8bfb3bc832780cca470070530afa6bb1caefd0"
amd64.url = "https://download.pydio.com/pub/cells/release/4.3.4/linux-amd64/pydio-cells-4.3.4-linux-amd64.zip"
amd64.sha256 = "55e8eb6db0bfbe5aab0fa00c7d0904c67ad7f14c8e03628c11b2f3d957d95731"
arm64.url = "https://download.pydio.com/pub/cells/release/4.3.4/linux-arm64/pydio-cells-4.3.4-linux-arm64.zip"
arm64.sha256 = "7fcf4f8ae97708f593a633a73a4979f18e498a1f76e55b1a5ff885ad0bcf1d57"
armhf.url = "https://download.pydio.com/pub/cells/release/4.3.4/linux-arm/pydio-cells-4.3.4-linux-arm.zip"
armhf.sha256 = "f661b213a6eea110e8d6c4ae44749f924521b59a5dd2d80b92c421e2aa85737a"
in_subdir = false
[resources.system_user]