mirror of
https://github.com/YunoHost-Apps/droppy_ynh.git
synced 2024-09-03 18:26:27 +02:00
Testing (#22)
* upgrade to v.12.1.0 * Update nginx.conf * Upgrade to 12.2.0 (#3) * Upgrade to 12.2.0 * Add maintainer * Fix issue #5 (#6) Explicity set the correct owner and group for the data dir during backup restore Co-authored-by: Rasmus Mattsson Kallio <rasmus@mallio.se> * Version bump * Fix linter warnings * Update manifest.json * Update manifest.json * Set badge in SVG * Finding an available port * Small fixes * Small fix * Cleaning up * Update manifest.json * Update manifest.json * Protect config file * Update manifest.json * [autopatch] Update issue and PR templates (#13) Co-authored-by: Yunohost-Bot <> * Add templates * fix (#16) * Update manifest.json * Auto-update README * Update scripts/install Co-authored-by: tituspijean <tituspijean@outlook.com> * Update scripts/upgrade Co-authored-by: tituspijean <tituspijean@outlook.com> * Update upgrade * Update check_process * Update check_process * Update manifest.json * Update check_process * Update manifest.json * Auto-update README * Enhance README (#19) * Rename DESCRITION.md to DESCRIPTION.md Co-authored-by: Yunohost-Bot <> * Auto-update README * bump version * Auto-update README * Fix * Update manifest.json * Auto-update README Co-authored-by: Rasmus MK <71251695+rasmus-mk@users.noreply.github.com> Co-authored-by: Rasmus Mattsson Kallio <rasmus@mallio.se> Co-authored-by: Alexandre Aubin <alex.aubin@mailoo.org> Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: Yunohost-Bot <> Co-authored-by: tituspijean <tituspijean@outlook.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org>
This commit is contained in:
parent
bc9cd4fad8
commit
88e894a018
6 changed files with 7 additions and 8 deletions
|
@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
|
|||
Droppy is a self-hosted file storage server with a web interface and capabilities to edit files and view media directly in the browser.
|
||||
|
||||
|
||||
**Shipped version:** 12.2.0~ynh9
|
||||
**Shipped version:** 12.2.0~ynh10
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
|
|||
Droppy est un serveur de stockage de fichiers auto-hébergé avec une interface Web et des capacités pour éditer des fichiers et afficher des médias directement dans le navigateur.
|
||||
|
||||
|
||||
**Version incluse :** 12.2.0~ynh9
|
||||
**Version incluse :** 12.2.0~ynh10
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
location ^~ __PATH__/ {
|
||||
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
||||
location __PATH__/ {
|
||||
|
||||
proxy_pass http://127.0.0.1:__PORT__/;
|
||||
proxy_redirect off;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"en": "Self-hosted file storage server",
|
||||
"fr": "Serveur de stockage de fichiers auto-hébergé"
|
||||
},
|
||||
"version": "12.2.0~ynh9",
|
||||
"version": "12.2.0~ynh10",
|
||||
"url": "https://github.com/silverwind/droppy",
|
||||
"upstream": {
|
||||
"license": "BSD-2-Clause",
|
||||
|
|
|
@ -126,8 +126,7 @@ chown -R $app:www-data "$data_path"
|
|||
#=================================================
|
||||
ynh_script_progression --message="Configuring a systemd service..." --weight=1
|
||||
|
||||
ynh_replace_string --match_string="__ENV_PATH__" --replace_string="$PATH" --target_file="../conf/systemd.service"
|
||||
|
||||
env_path="$PATH"
|
||||
ynh_add_systemd_config
|
||||
|
||||
#=================================================
|
||||
|
|
|
@ -123,8 +123,7 @@ chown -R $app: "$final_path"
|
|||
#=================================================
|
||||
ynh_script_progression --message="Configuring a systemd service..." --weight=2
|
||||
|
||||
ynh_replace_string --match_string="__ENV_PATH__" --replace_string="$PATH" --target_file="../conf/systemd.service"
|
||||
|
||||
env_path="$PATH"
|
||||
# Create a dedicated systemd config
|
||||
ynh_add_systemd_config
|
||||
|
||||
|
|
Loading…
Reference in a new issue