diff --git a/README.md b/README.md
index 41e0dfc..ef85438 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
BicBucStriim is a simple PHP application that runs in the Apache/PHP environment provided by the NAS (or any other server). It assumes that you manage your e-book collection with Calibre. The application reads the [Calibre](https://calibre-ebook.com/) data and publishes it in HTML form. To access the e-book catalog you simply point your ebook reader to your NAS, select one of your e-books and download it.
-**Shipped version:** 1.5.3~ynh4
+**Shipped version:** 1.6.5~ynh1
## Screenshots
@@ -27,8 +27,7 @@ BicBucStriim is a simple PHP application that runs in the Apache/PHP environment
## Documentation and resources
-* Official app website:
-* Upstream app code repository:
+* Upstream app code repository:
* YunoHost Store:
* Report a bug:
diff --git a/README_fr.md b/README_fr.md
index 6bf5226..16f0672 100644
--- a/README_fr.md
+++ b/README_fr.md
@@ -19,7 +19,7 @@ Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
BicBucStriim est une application PHP simple qui s'exécute dans l'environnement Apache/PHP fourni par le NAS (ou tout autre serveur). Cela suppose que vous gérez votre collection de livres électroniques avec Calibre. L'application lit les données [Calibre](https://calibre-ebook.com/) et les publie sous forme HTML. Pour accéder au catalogue de livres électroniques, il vous suffit de pointer votre lecteur de livres électroniques sur votre NAS, de sélectionner l'un de vos livres électroniques et de le télécharger.
-**Version incluse :** 1.5.3~ynh4
+**Version incluse :** 1.6.5~ynh1
## Captures d’écran
@@ -27,8 +27,7 @@ BicBucStriim est une application PHP simple qui s'exécute dans l'environnement
## Documentations et ressources
-* Site officiel de l’app :
-* Dépôt de code officiel de l’app :
+* Dépôt de code officiel de l’app :
* YunoHost Store:
* Signaler un bug :
diff --git a/conf/nginx.conf b/conf/nginx.conf
index 525b40a..f279cf3 100644
--- a/conf/nginx.conf
+++ b/conf/nginx.conf
@@ -12,10 +12,7 @@ location __PATH__/ {
index index.php;
- # Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
- client_max_body_size 50M;
-
- try_files $uri $uri/ __PATH__/index.php;
+ try_files $uri $uri/ @bicbucstriim;
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
@@ -31,3 +28,7 @@ location __PATH__/ {
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}
+
+location @bicbucstriim {
+ rewrite /(.*)$ /index.php?/$1 last;
+}
diff --git a/manifest.toml b/manifest.toml
index 1c27972..bbc68e0 100644
--- a/manifest.toml
+++ b/manifest.toml
@@ -7,14 +7,13 @@ name = "BicBucStriim"
description.en = "Digital books streamer, providing web-based access to your e-book collection"
description.fr = "Interface web pour accéder à votre collection d'e-book"
-version = "1.5.3~ynh4"
+version = "1.6.5~ynh1"
maintainers = ["Alex"]
[upstream]
license = "MIT"
-website = "http://projekte.textmulch.de/bicbucstriim/"
-code = "https://github.com/rvolz/BicBucStriim/"
+code = "https://github.com/mikespub-org/rvolz-BicBucStriim"
[integration]
yunohost = ">= 11.2"
@@ -40,8 +39,8 @@ ram.runtime = "50M"
[resources]
[resources.sources.main]
- url = "https://github.com/rvolz/BicBucStriim/archive/refs/tags/v1.5.3.zip"
- sha256 = "32b922c2d385a15ba71e1f2935017cc9269f95c60038c5e1b62caecbe4fa5bca"
+ url = "https://github.com/mikespub-org/rvolz-BicBucStriim/releases/download/v1.6.5/bicbucstriim-1.6.5.zip"
+ sha256 = "8cd516fd25253a0aee2c047706164686f175fd23730462eb424196d0bb102b35"
[resources.system_user]
@@ -54,6 +53,7 @@ ram.runtime = "50M"
packages = [
"php7.4-gd",
"php7.4-intl",
+ "php7.4-xml",
"php7.4-sqlite3",
"php7.4-mbstring",
]
diff --git a/scripts/install b/scripts/install
index 22e4f45..4dc13c4 100644
--- a/scripts/install
+++ b/scripts/install
@@ -30,7 +30,7 @@ ynh_script_progression --message="Adding system configurations related to $app..
ynh_add_nginx_config
# Create a dedicated PHP-FPM config
-ynh_add_fpm_config --usage=low --footprint=low
+ynh_add_fpm_config
#=================================================
# END OF SCRIPT
diff --git a/scripts/upgrade b/scripts/upgrade
index 06ac138..563519e 100644
--- a/scripts/upgrade
+++ b/scripts/upgrade
@@ -32,7 +32,7 @@ ynh_script_progression --message="Upgrading system configurations related to $ap
ynh_add_nginx_config
-ynh_add_fpm_config --usage=low --footprint=low
+ynh_add_fpm_config
#=================================================
# END OF SCRIPT