bundles/nginx: support PHP 7.3

This commit is contained in:
Franzi 2020-07-19 11:09:53 +02:00
parent 0743283763
commit 94c2c644a6
Signed by: kunsi
GPG key ID: 12E3D2136B818350

View file

@ -38,6 +38,14 @@ server {
% endfor
% endif
% if php:
location ~ \.php$ {
include fastcgi_params;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/run/php/php7.3-fpm.sock;
}
% endif
% if extras:
<%include file="extras/${node.name}/${domain}" />
% endif