我有以下业务逻辑:从中加载index.html root url(location /)和fastcgi由/ fcgi url(location / fcgi)调用 我也将url参数发送到fastcgi并在那里解析。 在nginx.conf中,我有两个不同的位置:location /和location / fcgi。 发生了什么:当我访问root url localhost时:9001 / index.html不是 从"位置/"加载但是打电话给" location / fcgi"并做fastcgi_pass 用根网址。这打破了我的fastcgi程序,因为没有参数传递 它显示调试错误(在Windows上测试)。最后服务器显示页面错误 而不是简单地显示index.html。为什么root匹配localhost:9001 / call" location / fcgi"但不是"位置/" ?如何使nginx加载index.html与url localhost:9001 / 但是不能同时调用/ fcgi?
Below is my nginx.conf.
server {
listen 9001;
server_name localhost;
root E:/data/;
location / {
index index.html;
}
location /fcgi {
fastcgi_pass 127.0.0.1:9002;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param DOCUMENT_URI $document_uri;
fastcgi_param DOCUMENT_ROOT $document_root;
fastcgi_param SERVER_PROTOCOL $server_protocol;
fastcgi_param REMOTE_ADDR $remote_addr;
fastcgi_param REMOTE_PORT $remote_port;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;
}
}
答案 0 :(得分:0)
我发现这个问题的原因很简单: 在位置“/ fcgi /”而不是“/ fcgi”的末尾使用额外的斜杠。 在这种情况下,nginx可以拆分调用,否则nginx处理位置“/”和“/ fcgi”与一个位置一样。如果有人能够解释为什么它会这样工作,我们将不胜感激。