diff --git a/README.md b/README.md index f1bd5c9d..6bd543cf 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ In addition to taking over the functionality of Instagram, the functioning of Pi It is also possible to import your data from Instagram. -**Shipped version:** 0.11.8~ynh3 +**Shipped version:** 0.11.8~ynh4 ## Screenshots diff --git a/README_fr.md b/README_fr.md index c1037218..77506aa1 100644 --- a/README_fr.md +++ b/README_fr.md @@ -26,7 +26,7 @@ En plus de reprendre les fonctionnalités d'Instagram, le fonctionnement de Pixe Il est également possible d'importer ses données depuis Instagram. -**Version incluse :** 0.11.8~ynh3 +**Version incluse :** 0.11.8~ynh4 ## Captures d’écran diff --git a/conf/extra_php-fpm.conf b/conf/extra_php-fpm.conf index f7960328..c979f58d 100644 --- a/conf/extra_php-fpm.conf +++ b/conf/extra_php-fpm.conf @@ -2,3 +2,6 @@ php_admin_value[upload_max_filesize] = 100M php_admin_value[post_max_size] = 100M + +; Group should not be pixelfed, unless image (folder) access rights are not working +group = www-data diff --git a/manifest.toml b/manifest.toml index 956a1276..601aebc4 100644 --- a/manifest.toml +++ b/manifest.toml @@ -5,7 +5,7 @@ name = "Pixelfed" description.en = "ActivityPub Federated Image Sharing" description.fr = "Logiciel de partage d'image fédéré via ActivityPub" -version = "0.11.8~ynh3" +version = "0.11.8~ynh4" maintainers = ["yalh76", "Lapineige"] diff --git a/scripts/upgrade b/scripts/upgrade index 092fb00b..51dc4d48 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -149,6 +149,7 @@ if [ -d "$install_dir/public/storage/m/_v2/" ]; then chmod 750 -R "$install_dir/public/storage/m/_v2/"* # all files subdirectories (picture folders) should be readable and executable. But if there is no picture, there is no /*/* chmod 770 "$install_dir/public/storage/m/_v2/"* # users folders should be 770 chmod 770 "$install_dir/public/storage/m/_v2/" # this should be 770 + chown -R :www-data "$install_dir/public/storage/m/_v2/" # Fix the mess following packaging v2 upgrade - and make sure proper group owner is set. fi #=================================================