[owncloud] Use PHP 7.4 now

Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
certbot_on_virtu
Yohann D'ANELLO 2022-01-18 18:42:58 +01:00
parent dc41f5a8f0
commit decf5be63e
Signed by: _ynerant
GPG Key ID: 3A75C55819C8CF85
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ location ~ .+\.php {
fastcgi_buffer_size 128k; fastcgi_buffer_size 128k;
fastcgi_buffers 4 256k; fastcgi_buffers 4 256k;
fastcgi_busy_buffers_size 256k; fastcgi_busy_buffers_size 256k;
fastcgi_pass unix:/var/run/php/php7.3-fpm.sock; fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
fastcgi_index index.php; fastcgi_index index.php;
fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info; fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
@ -21,6 +21,6 @@ location ~ ^/php_(ping|status)$ {
allow 127.0.0.1; allow 127.0.0.1;
deny all; deny all;
root /usr/share/nginx/html; root /usr/share/nginx/html;
fastcgi_pass unix:/var/run/php/php7.3-fpm.sock; fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
include fastcgi_params; include fastcgi_params;
} }

View File

@ -1,7 +1,7 @@
{{ ansible_header | comment }} {{ ansible_header | comment }}
upstream php-handler { upstream php-handler {
server unix:/var/run/php/php7.3-fpm.sock; server unix:/var/run/php/php7.4-fpm.sock;
} }
server { server {