Skip to content
Snippets Groups Projects
Verified Commit decf5be6 authored by ynerant's avatar ynerant
Browse files

[owncloud] Use PHP 7.4 now


Signed-off-by: ynerant's avatarYohann D'ANELLO <ynerant@crans.org>
parent dc41f5a8
No related branches found
No related tags found
1 merge request!318Owncloud -> Bullseye
......@@ -8,7 +8,7 @@ location ~ .+\.php {
fastcgi_buffer_size 128k;
fastcgi_buffers 4 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_param PATH_INFO $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;
deny all;
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;
}
{{ ansible_header | comment }}
upstream php-handler {
server unix:/var/run/php/php7.3-fpm.sock;
server unix:/var/run/php/php7.4-fpm.sock;
}
server {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment