nginx-ui/template/block/enable-php-8.conf
2023-12-27 10:25:12 +08:00

12 lines
361 B
Text

# 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;
}