仅将 URI 中的第一个路径元素与 CGI 可执行文件相匹配的正确 nginx 位置规则是什么?

发布于 2024-09-26 13:36:00 字数 1288 浏览 3 评论 0原文

我正在使用为 apache cgi-bin 和 nginx 设计的 FreePascal Web 模块。

CGI 本身称为 spidersample.cgi 并包含诸如 hello、bye 等模块。

使用 Apache,当调用 spidersample.cgi/hello 时, spidersample.cgi 被执行,并将控制权传递给它包含的 hello 子例程。

使用nginx而不是执行spidersample.cgi,它将spidersample.cgi/hello视为spidersample.cgi<中的hello文件/strong> 目录,并返回 404 错误,因为没有这样的目录。

我怀疑这是一个很容易解决的问题,配置文件中有一些重写规则,它发布在下面。

===============================================

服务器 { 听8118; 服务器名称本地主机; access_log /var/log/nginx/sysman_access.log; 索引index.html; 根 /home/rchurch/Data/Lazarus/CgiApps;

    location ~ \.cgi$ {
            include /etc/nginx/fastcgi_params;
            fastcgi_pass unix:/tmp/sysman_cgi.sock;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_n$
            fastcgi_param  QUERY_STRING     $query_string;
            fastcgi_param  REQUEST_METHOD   $request_method;
            fastcgi_param  CONTENT_TYPE     $content_type;
            fastcgi_param  CONTENT_LENGTH   $content_length;
    }

}

===================================================== =================

I am using a FreePascal web module designed for apache cgi-bin with nginx.

The CGI itself is called spidersample.cgi and contains modules such as hello, bye etc.

With Apache when spidersample.cgi/hello is called, spidersample.cgi gets executed, and passes control to the hello subroutine it contains.

With nginx instead of executing spidersample.cgi it treats spidersample.cgi/hello as meaning a hello file in a spidersample.cgi directory, and returns with a 404 error as there is no such directory.

I suspect it is an easily fixed problem with some rewrite rules in the configuration file and it is posted below.

=============================================

server {
listen 8118;
server_name localhost;
access_log /var/log/nginx/sysman_access.log;
index index.html;
root /home/rchurch/Data/Lazarus/CgiApps;

    location ~ \.cgi$ {
            include /etc/nginx/fastcgi_params;
            fastcgi_pass unix:/tmp/sysman_cgi.sock;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_n$
            fastcgi_param  QUERY_STRING     $query_string;
            fastcgi_param  REQUEST_METHOD   $request_method;
            fastcgi_param  CONTENT_TYPE     $content_type;
            fastcgi_param  CONTENT_LENGTH   $content_length;
    }

}

==================================================================

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乖乖哒 2024-10-03 13:36:00

location ~ .cgi$ 将匹配 Spidersample.cgi //$ 表示行尾

Spidersample.cgi/hello 匹配 location ~ (.+)cgi/hello 或 (.+)cgi(.*)

location ~ .cgi$ will match spidersample.cgi //$ means end of the line

spidersample.cgi/hello match location ~ (.+)cgi/hello or (.+)cgi(.*)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文