mirror of
https://github.com/YunoHost-Apps/grist_ynh.git
synced 2024-09-03 20:36:18 +02:00
commit
770e183d0e
6 changed files with 18 additions and 9 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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/"
|
||||
|
|
Loading…
Add table
Reference in a new issue