mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-23 13:44:36 +03:00
switch to php-fpm 7.3
Also fixes indent.
This commit is contained in:
parent
8c3a0efe8b
commit
a543d57cbd
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user