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

Allowing subpath

This commit is contained in:
Florent 2021-09-19 15:27:57 +02:00 committed by Florent F
parent f7ca66a78d
commit b2d796c9ec
4 changed files with 16 additions and 5 deletions

View file

@ -1,4 +1,5 @@
location / {
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
# Force usage of https
if ($scheme = http) {

View file

@ -32,6 +32,16 @@
"name": "domain",
"type": "domain"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for n8n",
"fr": "Choisissez un chemin pour n8n"
},
"example": "/n8n",
"default": "/n8n"
},
{
"name": "admin",
"type": "user"

View file

@ -17,7 +17,7 @@ old_domain=$YNH_APP_OLD_DOMAIN
old_path=$YNH_APP_OLD_PATH
new_domain=$YNH_APP_NEW_DOMAIN
new_path="/"
new_path=$YNH_APP_NEW_PATH
app=$YNH_APP_INSTANCE_NAME

View file

@ -24,7 +24,7 @@ ynh_abort_if_errors
#=================================================
domain=$YNH_APP_ARG_DOMAIN
path_url="/"
path_url=$YNH_APP_ARG_PATH
is_public=$YNH_APP_ARG_IS_PUBLIC
password=$YNH_APP_ARG_PASSWORD
admin=$YNH_APP_ARG_ADMIN