nginx+flask+php在linux环境下怎么配置
location~\.php${root/root/Desktop/web_flask3;fastcgi_pass127.0.0.1:9000;fastcgi_index...
location ~ \.php$ {
root /root/Desktop/web_flask3;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location / {
#nginx.conf
root /root/Desktop/web_flask3;
index index.html index.htm index.html index.php default.html Default.html;
include uwsgi_params;
uwsgi_pass 127.0.0.1:8001; # 指向uwsgi 所应用的内部地址,所有请求将转>发给uwsgi 处理
uwsgi_param UWSGI_PYHOME /root/Desktop/web_flask3/venv; # 指向虚拟环境目
录
uwsgi_param UWSGI_CHDIR /root/Desktop/web_flask3; # 指向网站根目录
uwsgi_param UWSGI_SCRIPT manage:app; # 指定启动程序
}
这是我的nginx.conf 我是这样配置的,我有一个路由test 返回post_zan.html这个文件通过ajax调用static的php我的路径这样写的 xmlhttp.open("GET","app/static/post_zan_demo.php?post_id="+post_id+"&user_id="+user_id+"&t="+ Math.random(),true);
flask的文件树是这样的 web_flask3
|___app
|__static
| |___________________post_zan_demo.php
|__templates
|______________________post_zan.html
请问各位大神帮忙看一下怎么回事,如果解决该问题有现金回报10元
并没有返回php文件中的内容 展开
root /root/Desktop/web_flask3;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location / {
#nginx.conf
root /root/Desktop/web_flask3;
index index.html index.htm index.html index.php default.html Default.html;
include uwsgi_params;
uwsgi_pass 127.0.0.1:8001; # 指向uwsgi 所应用的内部地址,所有请求将转>发给uwsgi 处理
uwsgi_param UWSGI_PYHOME /root/Desktop/web_flask3/venv; # 指向虚拟环境目
录
uwsgi_param UWSGI_CHDIR /root/Desktop/web_flask3; # 指向网站根目录
uwsgi_param UWSGI_SCRIPT manage:app; # 指定启动程序
}
这是我的nginx.conf 我是这样配置的,我有一个路由test 返回post_zan.html这个文件通过ajax调用static的php我的路径这样写的 xmlhttp.open("GET","app/static/post_zan_demo.php?post_id="+post_id+"&user_id="+user_id+"&t="+ Math.random(),true);
flask的文件树是这样的 web_flask3
|___app
|__static
| |___________________post_zan_demo.php
|__templates
|______________________post_zan.html
请问各位大神帮忙看一下怎么回事,如果解决该问题有现金回报10元
并没有返回php文件中的内容 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询