switch to php-fpm 7.3

Also fixes indent.
This commit is contained in:
Sarah Hoffmann 2020-05-13 10:04:31 +02:00
parent 8c3a0efe8b
commit a543d57cbd

View File

@ -160,18 +160,18 @@ Tell nginx that php files are special and to fastcgi_pass to the php-fpm
unix socket by adding the location definition to the default configuration. unix socket by adding the location definition to the default configuration.
root /srv/nominatim/build/website; root /srv/nominatim/build/website;
index search.php index.html; index search.php;
location / { location / {
try_files $uri $uri/ @php; try_files $uri $uri/ @php;
} }
location @php { location @php {
fastcgi_param SCRIPT_FILENAME "$document_root$uri.php"; fastcgi_param SCRIPT_FILENAME "$document_root$uri.php";
fastcgi_param PATH_TRANSLATED "$document_root$uri.php"; fastcgi_param PATH_TRANSLATED "$document_root$uri.php";
fastcgi_param QUERY_STRING $args; fastcgi_param QUERY_STRING $args;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock; fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
fastcgi_index index.php; fastcgi_index index.php;
include fastcgi_params; include fastcgi_params;
} }
location ~ [^/]\.php(/|$) { location ~ [^/]\.php(/|$) {
@ -179,7 +179,7 @@ unix socket by adding the location definition to the default configuration.
if (!-f $document_root$fastcgi_script_name) { if (!-f $document_root$fastcgi_script_name) {
return 404; return 404;
} }
fastcgi_pass unix:/var/run/php7.2-fpm.sock; fastcgi_pass unix:/var/run/php7.3-fpm.sock;
fastcgi_index search.php; fastcgi_index search.php;
include fastcgi.conf; include fastcgi.conf;
} }