直接修改 nginx的配置文件
# 典型配置
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $DOCUMENT_ROOT$fastcgi_script_name;
include fastcgi_params;
}
# 修改第1,6行,支持pathinfo
location ~ \...
-
运维•2023-08-08• 399Views
pycharm代理配置
-
AI•2023-08-01• 346Views
pytorch的模块结构图
-
AI•2023-07-31• 317Views
梯度下降的简单实现以及理解
-
2023-09-07• 175Views
git配置本地代理