Melon Playground甜瓜游乐场
98.73M · 2026-03-22
server {
listen 80;
server_name _;
#root /var/www/html;
root /var/www/html/erp/public;
index index.php index.html index.htm;
location / {
#try_files $uri $uri/ /index.php?$query_string;
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php?s=/$1 last;
break;
}
}
# 处理 PHP 脚本
location ~ .php$ {
include fastcgi_params;
fastcgi_pass 127.0.0.1:9000; # php-fpm 的监听地址
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_split_path_info ^(.+.php)(/.+)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
}
}
https://blog.c*s**dn.net/chendongpu/article/details/126224100
Stream 进阶三部曲:flatMap、reduce 与并行流的实战陷阱与最佳实践
【超分实战】拒绝灾难性遗忘!记一次原生4K医疗影像(SurgiSR4K)的模型微调踩坑实录
2026-03-22
2026-03-22