13 lines
361 B
Plaintext
13 lines
361 B
Plaintext
|
# Nginx UI Template Start
|
||
|
name = "PHP8.1"
|
||
|
author = "@0xJacky"
|
||
|
description = { en = "Enabled PHP 8.1 Config", zh_CN = "启用 PHP 8.1 配置", zh_TW = "啟用 PHP 8.1 配置"}
|
||
|
# Nginx UI Template End
|
||
|
location ~ [^/]\.php(/|$)
|
||
|
{
|
||
|
try_files $uri =404;
|
||
|
fastcgi_pass unix:/var/run/php/php8.1-fpm.sock;
|
||
|
fastcgi_index index.php;
|
||
|
include fastcgi.conf;
|
||
|
}
|