mirror of
https://github.com/YunoHost-Apps/pixelfed_ynh.git
synced 2024-09-03 20:06:04 +02:00
cleaning
This commit is contained in:
parent
f09d1da676
commit
2d408bc621
4 changed files with 11 additions and 33 deletions
|
@ -1,4 +1,4 @@
|
|||
; Additional php.ini defines, specific to this pool of workers.
|
||||
|
||||
php_admin_value[upload_max_filesize] = 50M
|
||||
php_admin_value[post_max_size] = 50M
|
||||
php_admin_value[upload_max_filesize] = 100M
|
||||
php_admin_value[post_max_size] = 100M
|
||||
|
|
|
@ -7,7 +7,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;
|
||||
client_max_body_size 100M;
|
||||
|
||||
try_files $uri $uri/ @pixelfed;
|
||||
location ~ [^/]\.php(/|$) {
|
||||
|
|
22
doc/ADMIN.md
22
doc/ADMIN.md
|
@ -4,33 +4,19 @@ After being first registered, you need to execute the folloing command to promot
|
|||
|
||||
**Run:**
|
||||
|
||||
$ sudo php8.0 /var/www/pixelfed/artisan user:admin 1
|
||||
$ sudo php8.1 __INSTALL_DIR__/artisan user:admin 1
|
||||
|
||||
and respond yes to the question ` Add admin privileges to this user?`.
|
||||
|
||||
### Allow/Close registrations
|
||||
|
||||
Registrations are open by default.
|
||||
To change that setting, edit `/var/www/pixelfed/.env` and set `OPEN_REGISTRATION=false` instead of `true`.
|
||||
Then run `php7.4 artisan config:cache` to reload the settings.
|
||||
|
||||
### Change max upload limit
|
||||
|
||||
To change max upload limit (default : 50MB), edit the Pixelfed `php-fpm.conf` file and find the line `Common values to change to increase file upload limit`
|
||||
And adjust those values:
|
||||
```
|
||||
php_admin_value[post_max_size] = 50M
|
||||
php_admin_value[upload_max_filesize] = 50M
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
To change that setting, edit `__INSTALL_DIR__/.env` and set `OPEN_REGISTRATION=false` instead of `true`.
|
||||
Then run `php8.1 artisan config:cache` to reload the settings.
|
||||
|
||||
### Disable search engine indexing
|
||||
|
||||
If you don't want your Pixelfed instance to be indexed in search engine (and so on), edit `/var/www/pixelfed/public/robots.txt` like this:
|
||||
If you don't want your Pixelfed instance to be indexed in search engine (and so on), edit `__INSTALL_DIR__/public/robots.txt` like this:
|
||||
```
|
||||
User-agent: *
|
||||
Disallow: /
|
||||
|
|
|
@ -4,27 +4,19 @@ Après avoir été enregistré pour la première fois, vous devez exécuter la c
|
|||
|
||||
**Entrez la commande:**
|
||||
|
||||
$ php8.0 /var/www/pixelfed/artisan user:admin 1
|
||||
sudo php8.1 __INSTALL_DIR__/artisan user:admin 1
|
||||
|
||||
et répondez oui à la question « Ajouter des privilèges d'administrateur à cet utilisateur ? »
|
||||
|
||||
### Autoriser/Fermer les inscriptions
|
||||
|
||||
Les inscriptions sont ouvertes par défaut.
|
||||
Pour modifier ce paramètre, modifiez `/var/www/pixelfed/.env` et définissez `OPEN_REGISTRATION=false` au lieu de `true`.
|
||||
Ensuite, exécutez `php7.4 artisan config:cache` pour recharger les paramètres.
|
||||
|
||||
### Changer la taille limite maximale de téléversement
|
||||
|
||||
Pour changer la limite maximale de téléversement (par défaut : 50Mo), éditer le fichier `php-fpm.conf` de Pixelfed et après la ligne `Common values to change to increase file upload limit` ajuster ces valeurs:
|
||||
```
|
||||
php_admin_value[post_max_size] = 50M
|
||||
php_admin_value[upload_max_filesize] = 50M
|
||||
```
|
||||
Pour modifier ce paramètre, modifiez `__INSTALL_DIR__/.env` et définissez `OPEN_REGISTRATION=false` au lieu de `true`.
|
||||
Ensuite, exécutez `php8.1 artisan config:cache` pour recharger les paramètres.
|
||||
|
||||
### Désactiver l'indexation des moteurs de recherche
|
||||
|
||||
Si vous ne voulez pas que votre instance Pixelfed soit indexée dans le moteur de recherche (et ainsi de suite), modifiez `/var/www/pixelfed/public/robots.txt` comme ceci :
|
||||
Si vous ne voulez pas que votre instance Pixelfed soit indexée dans le moteur de recherche (et ainsi de suite), modifiez `__INSTALL_DIR__/public/robots.txt` comme ceci :
|
||||
```
|
||||
Agent utilisateur: *
|
||||
Interdire : /
|
||||
|
|
Loading…
Add table
Reference in a new issue