欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

11340php

周雨萌1年前9瀏覽0評論
// 下載 11340php 并解壓縮
wget https://www.11340.net/src/11340php-7.4-en.tgz
tar -zxvf 11340php-7.4-en.tgz
// 配置 Nginx 或 Apache,設置 Web 服務器
server {
listen       80;
server_name  example.com;
root /path/to/your/webroot;
index index.html index.htm index.php;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
fastcgi_pass   127.0.0.1:9000;
fastcgi_index  index.php;
fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
include        fastcgi_params;
}
}
// 進入解壓好的目錄,啟動 PHP 運行環境
cd /path/to/11340php-7.4-en/
./php-cgi -b 127.0.0.1:9000