mirror of
https://github.com/YunoHost-Apps/vikunja_ynh.git
synced 2024-09-03 18:06:26 +02:00
commit
44b2831419
5 changed files with 9 additions and 7 deletions
|
@ -17,7 +17,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
|
||||||
|
|
||||||
Self-hosted To-Do list application
|
Self-hosted To-Do list application
|
||||||
|
|
||||||
**Shipped version:** 0.17.1~ynh2
|
**Shipped version:** 0.17.1~ynh3
|
||||||
|
|
||||||
**Demo:** https://try.vikunja.io/login
|
**Demo:** https://try.vikunja.io/login
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
|
||||||
|
|
||||||
Application de liste de tâches auto-hébergée
|
Application de liste de tâches auto-hébergée
|
||||||
|
|
||||||
**Version incluse :** 0.17.1~ynh2
|
**Version incluse :** 0.17.1~ynh3
|
||||||
|
|
||||||
**Démo :** https://try.vikunja.io/login
|
**Démo :** https://try.vikunja.io/login
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
location / {
|
location / {
|
||||||
|
|
||||||
# Path to source
|
# Path to source
|
||||||
alias __FINALPATH__/ ;
|
alias __FINALPATH__/ ;
|
||||||
|
|
||||||
# Force usage of https
|
# Force usage of https
|
||||||
|
@ -17,6 +17,6 @@ location / {
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~* ^/(api|dav|\.well-known)/ {
|
location ~* ^/(api|dav|\.well-known)/ {
|
||||||
proxy_pass http://127.0.0.1:__PORT__;
|
proxy_pass http://127.0.0.1:__PORT__;
|
||||||
client_max_body_size 20M;
|
client_max_body_size 20M;
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"en": "Self-hosted To-Do list application",
|
"en": "Self-hosted To-Do list application",
|
||||||
"fr": "Application de liste de tâches auto-hébergée"
|
"fr": "Application de liste de tâches auto-hébergée"
|
||||||
},
|
},
|
||||||
"version": "0.17.1~ynh2",
|
"version": "0.17.1~ynh3",
|
||||||
"url": "https://vikunja.io/",
|
"url": "https://vikunja.io/",
|
||||||
"upstream": {
|
"upstream": {
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
|
|
|
@ -161,6 +161,8 @@ then
|
||||||
ynh_permission_update --permission="main" --add="visitors"
|
ynh_permission_update --permission="main" --add="visitors"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
ynh_permission_create --permission="api" --url="/api" --allowed="visitors" --auth_header="false" --show_tile="false" --protected="true"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# RELOAD NGINX
|
# RELOAD NGINX
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
Loading…
Reference in a new issue