1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/grist_ynh.git synced 2024-09-03 20:36:18 +02:00

Merge pull request #13 from YunoHost-Apps/testing

Testing
This commit is contained in:
Florent 2023-12-05 14:08:36 +01:00 committed by GitHub
commit 770e183d0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 18 additions and 9 deletions

View file

@ -35,10 +35,10 @@ More about the features can be found here: <https://github.com/gristlabs/grist-c
You can add some configuration in the `/home/yunohost.app/grist/custom.env` file. Refer to the [Grist README](https://github.com/gristlabs/grist-core/#environment-variables) to know more.
:warn: Be sure of what you do, it may break your instance.
:warning: Be sure of what you do, it may break your instance.
**Shipped version:** 1.1.9~ynh1
**Shipped version:** 1.1.9~ynh2
**Demo:** https://docs.getgrist.com

View file

@ -35,10 +35,10 @@ Plus d'information sur les fonctionnalités sont disponibles ici : <https://gith
Vous pouvez ajouter quelques configurations dans le fichier `/home/yunohost.app/grist/custom.env`. Référez-vous au [README de Grist](https://github.com/gristlabs/grist-core/#environment-variables) pour en savoir plus.
:warn : Soyez sûr de ce que vous faîtes, cela peut casser votre instance.
:warning: Soyez sûr de ce que vous faîtes, cela peut casser votre instance.
**Version incluse :** 1.1.9~ynh1
**Version incluse :** 1.1.9~ynh2
**Démo :** https://docs.getgrist.com

View file

@ -1,5 +1,5 @@
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
location @api {
proxy_pass http://localhost:__PORT__;
proxy_redirect off;
@ -13,6 +13,15 @@ location __PATH__/ {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
location / {
try_files /dev/null @api;
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}
location ~ .*/uploads$ {
try_files /dev/null @api;
client_max_body_size 10G;
}

View file

@ -17,4 +17,4 @@ More about the features can be found here: <https://github.com/gristlabs/grist-c
You can add some configuration in the `/home/yunohost.app/grist/custom.env` file. Refer to the [Grist README](https://github.com/gristlabs/grist-core/#environment-variables) to know more.
:warn: Be sure of what you do, it may break your instance.
:warning: Be sure of what you do, it may break your instance.

View file

@ -17,4 +17,4 @@ Plus d'information sur les fonctionnalités sont disponibles ici : <https://gith
Vous pouvez ajouter quelques configurations dans le fichier `/home/yunohost.app/grist/custom.env`. Référez-vous au [README de Grist](https://github.com/gristlabs/grist-core/#environment-variables) pour en savoir plus.
:warn : Soyez sûr de ce que vous faîtes, cela peut casser votre instance.
:warning: Soyez sûr de ce que vous faîtes, cela peut casser votre instance.

View file

@ -7,12 +7,12 @@ name = "Grist"
description.en = "Modern relational spreadsheet"
description.fr = "Feuille de calcul relationnelle moderne"
version = "1.1.9~ynh1"
version = "1.1.9~ynh2"
maintainers = ["fflorent"]
[upstream]
license = "AGPL-3.0-only"
license = "Apache-2.0"
website = "https://getgrist.com"
demo = "https://docs.getgrist.com"
admindoc = "https://www.getgrist.com/product/self-managed/"