mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 18:35:51 +02:00
12 lines
361 B
Text
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;
|
|
}
|