1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/zerobin_ynh.git synced 2024-09-03 18:06:01 +02:00

Small fixes

This commit is contained in:
ericgaspar 2020-10-09 18:06:47 +02:00
parent 33f241c060
commit eee98fa53e
No known key found for this signature in database
GPG key ID: 574F281483054D44
5 changed files with 11 additions and 10 deletions

View file

@ -32,6 +32,7 @@ This is a fork of ZeroBin, originally developed by Sébastien Sauvage. It was re
## Documentation
* Official documentation: https://github.com/PrivateBin/PrivateBin/wiki
* YunoHost documentation: https://yunohost.org/#/app_zerobin
## YunoHost specific features

View file

@ -33,6 +33,7 @@ Il reste cependant compatible avec le schéma original de stockage des données
## Documentation
* Documentation officielle : https://github.com/PrivateBin/PrivateBin/wiki
* Documentation YunoHost : https://yunohost.org/#/app_zerobin_fr
## Caractéristiques spécifiques YunoHost
@ -48,13 +49,12 @@ Il reste cependant compatible avec le schéma original de stockage des données
## Informations additionnelles
Dans la [documentation de mise à jour](https://github.com/PrivateBin/PrivateBin/wiki/Configuration#zerobincompatibility) de Privatebin, il est précisé que :
* Pour une compatibilité complète avec Zerobin et le déchiffrement de tous les vieux "paste", vous devriez activer cette option. Cependant, ce n'est pas recommandé pour les nouvelles installations car cela affaiblit la sécurité de votre instance PrivateBin.
* Ceci signifie que nous avons décidé de supprimer ce répertoire pour permettre la sécurisation des données. Vous pouvez sauvegarder le répertoire 'data', si vous voulez conservez vos données. Mais vous devriez savoir que cela réduit la sécurité de votre application.
## Liens
* Signaler un bug: https://github.com/YunoHost-Apps/zerobin_ynh/issues
* Signaler un bug : https://github.com/YunoHost-Apps/zerobin_ynh/issues
* Site de l'application PrivateBin : https://privatebin.info/
* Dépot de l'application principale : https://github.com/PrivateBin/PrivateBin
* Site web YunoHost : https://yunohost.org/

View file

@ -7,14 +7,14 @@
"fr": "Pastebin minimaliste où le serveur n'a aucune connaissance des données copiées"
},
"version": "1.3.4~ynh1",
"url": "http://sebsauvage.net/wiki/doku.php?id=php:zerobin",
"url": "https://github.com/PrivateBin/PrivateBin",
"license": "Zlib",
"maintainer": {
"name": "julien",
"email": "julien.malik@paraiso.me"
},
"requirements": {
"yunohost": ">= 3.5"
"yunohost": ">= 3.8.1"
},
"multi_instance": true,
"services": [

View file

@ -32,17 +32,17 @@ ynh_secure_remove --file="$final_path"
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Removing nginx web server configuration" --weight=3
ynh_script_progression --message="Removing NGINX web server configuration" --weight=3
# Remove the dedicated nginx config
# Remove the dedicated NGINX config
ynh_remove_nginx_config
#=================================================
# REMOVE PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression --message="Removing php-fpm configuration"
ynh_script_progression --message="Removing PHP-FPM configuration"
# Remove the dedicated php-fpm config
# Remove the dedicated PHP-FPM config
ynh_remove_fpm_config
#=================================================

View file

@ -137,7 +137,7 @@ chmod 700 $final_path/{data,tmp}
#=================================================
# SETUP SSOWAT
#=================================================
ynh_script_progression --message="Upgrading SSOwat configuration..."
ynh_script_progression --message="Upgrading SSOwat configuration..." --weight=1
# If app is public, add url to SSOWat conf as skipped_uris
if [ $is_public -eq 1 ]; then
@ -148,7 +148,7 @@ fi
#=================================================
# RELOAD NGINX
#=================================================
ynh_script_progression --message="Reloading NGINX web server..."
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
ynh_systemd_action --service_name=nginx --action=reload