diff --git a/README.md b/README.md index c40c64a..d137fb6 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ CryptPad is a collaborative encrypted document editor in real time. It is a priv ## Configuration -* How to configure this app: From an admin panel, a plain file with SSH. +* How to configure this app: From the admin panel and the plain file `/var/www/cryptpad/config/config.js.` ## Documentation @@ -49,7 +49,7 @@ CryptPad is a collaborative encrypted document editor in real time. It is a priv ## Additional information -* To increase space for CryptPad users, you can modify `/var/www/cryptpad/config.js`, and restart the CryptPad service with `sudo service cryptpad restart`. +* To increase space for CryptPad users, you can modify `/var/www/cryptpad/config/config.js`, and restart the CryptPad service with `sudo service cryptpad restart`. ## Links diff --git a/README_fr.md b/README_fr.md index 4e199c2..68928c0 100644 --- a/README_fr.md +++ b/README_fr.md @@ -23,7 +23,7 @@ CryptPad est un éditeur de documents chiffrés collaboratifs en temps réel. C' ## Configuration -Comment configurer cette application : via le panneau d'administration ainsi que le fichier de configuration `/var/www/cryptpad/config.js`. +Comment configurer cette application : via le panneau d'administration ainsi que le fichier de configuration `/var/www/cryptpad/config/config.js`. ## Documentation @@ -49,7 +49,7 @@ Comment configurer cette application : via le panneau d'administration ainsi que ## Informations additionnelles -* Pour augmenter l'espace pour l'utilisateur dans le CryptPad, vous pouvez configurer le fichier `config.js` dans le dossier `/var/www/cryptpad/config.js`, puis redémarrez le service CryptPad `sudo service cryptpad restart`. +* Pour augmenter l'espace pour l'utilisateur dans le CryptPad, vous pouvez configurer le fichier `config.js` dans le dossier `/var/www/cryptpad/config/config.js`, puis redémarrez le service CryptPad `sudo service cryptpad restart`. ## Liens diff --git a/manifest.json b/manifest.json index 8275860..c6cdb5a 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Zero Knowledge realtime collaborative editor", "fr": "Éditeur chiffré collaboratif en temps réel." }, - "version": "3.24.0~ynh1", + "version": "3.24.0~ynh2", "url": "https://cryptpad.fr/", "license": "AGPL-3.0-only", "maintainer": { @@ -31,16 +31,6 @@ "fr": "Choisissez un nom de domaine pour CryptPad" }, "example": "cryptpad.example.com" - }, - { - "name": "path", - "type": "path", - "ask": { - "en": "Choose a path for CryptPad, requires a dedicated sub-domain/domain.", - "fr": "Choisissez un chemin pour CryptPad, nécessite un sous-domaine/domaine dédié." - }, - "example": "/", - "default": "/" }, { "name": "admin", diff --git a/scripts/_common.sh b/scripts/_common.sh index 179e4f2..a68592d 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -16,4 +16,5 @@ nodejs_version="12" #================================================= # FUTURE OFFICIAL HELPERS -#================================================= \ No newline at end of file +#================================================= + diff --git a/scripts/install b/scripts/install index 07854a2..fa3ca89 100644 --- a/scripts/install +++ b/scripts/install @@ -50,14 +50,14 @@ ynh_app_setting_set --app=$app --key=is_public --value=$is_public ynh_app_setting_set --app=$app --key=path_url --value=$path_url ynh_app_setting_set --app=$app --key=admin --value=$admin -admin_mail=$(ynh_user_get_info "$admin" 'mail') +admin_mail=$(ynh_user_get_info "$admin" "mail") #================================================= # STANDARD MODIFICATIONS #================================================= # FIND AND OPEN A PORT #================================================= -ynh_script_progression --message="Configuring firewall..." --weight=1 +ynh_script_progression --message="Finding an available port..." --weight=1 # Find an available port port=$(ynh_find_port --port=3000) diff --git a/scripts/upgrade b/scripts/upgrade index bad4cf5..3af5f5f 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -31,7 +31,7 @@ path_url=$(ynh_app_setting_get --app=$app --key=path_url) final_path=$(ynh_app_setting_get --app=$app --key=final_path) is_public=$(ynh_app_setting_get --app=$app --key=is_public) admin=$(ynh_app_setting_get --app=$app --key=admin) -admin_mail=$(ynh_user_get_info '$admin' 'mail') +admin_mail=$(ynh_user_get_info "$admin" "mail") port=$(ynh_app_setting_get --app=$app --key=port) porti=$(ynh_app_setting_get --app=$app --key=porti)