-
1
location ~ ^/index\.php(/|$) {
-
2
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
-
3
-
4
if (!-f $document_root$fastcgi_script_name) {
-
5
return 404;
-
6
}
-
7
-
8
fastcgi_pass unix:/var/run/php/php8.5-fpm-flashii.net.sock;
-
9
fastcgi_index index.php;
-
10
include fastcgi_params;
-
11
}