Documentation du Dr FRAPPE

Ce wiki regroupe les résultats de mes expériences en informatique accumulés au cours de mes recherches sur le net.

Dans la mesure du possible, j'ai cité mes sources ; il en manque certainement… :-)

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
tutoriel:internet:serveur:nginx2apache:start1 [2022/03/22 13:05] – [Première étape] admintutoriel:internet:serveur:nginx2apache:start1 [2022/08/13 22:15] (Version actuelle) – modification externe 127.0.0.1
Ligne 17: Ligne 17:
 <WRAP list-deep> <WRAP list-deep>
   - **Installez [[apt>php-fpm]]** <cli prompt='$ '>...@...:~$ sudo apt install php-fpm</cli>   - **Installez [[apt>php-fpm]]** <cli prompt='$ '>...@...:~$ sudo apt install php-fpm</cli>
-  - **Configurez PHP-FPM** : créez un fichier de pool par site, sur la base du fichier /etc/php/7.4/fpm/pool.d/www.conf (Remplacez www par le nom de votre site) :<code conf /etc/php/7.4/fpm/pool.d/monsite.conf> +  - **Configurez PHP-FPM** : créez un fichier de pool par site, sur la base du fichier /etc/php/7.4/fpm/pool.d/www.conf (Remplacez www par le nom de votre site) :<code /etc/php/7.4/fpm/pool.d/monsite.conf> 
-; Start a new pool named 'www'. +(...)
-; the variable $pool can be used in any directive and will be replaced by the +
-; pool name ('www' here)+
 #~ [www] #~ [www]
 [monsite] [monsite]
- +(...)
-; Per pool prefix +
-; It only applies on the following directives: +
-; - 'access.log' +
-; - 'slowlog' +
-; - 'listen' (unixsocket) +
-; - 'chroot' +
-; - 'chdir' +
-; - 'php_values' +
-; - 'php_admin_values' +
-; When not set, the global prefix (or /usr) applies instead. +
-; Note: This directive can also be relative to the global prefix. +
-; Default Value: none +
-;prefix = /path/to/pools/$pool +
 ; Unix user/group of processes ; Unix user/group of processes
 ; Note: The user is mandatory. If the group is not set, the default user's group ; Note: The user is mandatory. If the group is not set, the default user's group
Ligne 55: Ligne 39:
 ; Note: This value is mandatory. ; Note: This value is mandatory.
 listen = /run/php/php7.4-fpm.sock listen = /run/php/php7.4-fpm.sock
- +(...)
-; Set listen(2) backlog. +
-; Default Value: 511 (-1 on FreeBSD and OpenBSD) +
-;listen.backlog = 511 +
 ; Set permissions for unix socket, if one is used. In Linux, read/write ; Set permissions for unix socket, if one is used. In Linux, read/write
 ; permissions must be set in order to allow connections from a web server. Many ; permissions must be set in order to allow connections from a web server. Many