fixes
parent
4670c87c4f
commit
d765e760de
|
@ -14,10 +14,14 @@ server {
|
||||||
try_files $uri $uri/ =404;
|
try_files $uri $uri/ =404;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ \.php$ {
|
location ~ [^/]\.php(/|$) {
|
||||||
include snippets/fastcgi-php.conf;
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||||
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
|
fastcgi_index index.php;
|
||||||
fastcgi_param HTACCESS on;
|
fastcgi_pass unix:/run/php/php7.4.sock;
|
||||||
proxy_read_timeout 800;
|
include fastcgi_params;
|
||||||
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
||||||
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||||
|
fastcgi_read_timeout 300;
|
||||||
|
proxy_read_timeout 300;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue