nginx+spawn-fcig+fastcgi+c++

发布于 2021-11-23 08:18:38 字数 9613 浏览 691 评论 2

各位好,我使用nginx+fastcgi+c++,基于web http协议来进行客户端和服务器端的交互,我又两个cgi程序,分别为1.cgi和2.cgi,已经其中,我希望url路径中包含fcgi1.cgi,将请求交给1.cgi,对于2同理.

我的nginx配置

#nginx run on user group
user  zhou adm;

# number of worker processes
worker_processes  2;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

error_log /home/zhou/nginx/log/error.log info;

pid        /home/zhou/nginx/nginx.pid;


worker_rlimit_nofile 50000;

events {
    use epoll;
    worker_connections  50000;
    
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    tcp_nopush     on;
    tcp_nodelay    on;

    #keepalive_timeout  0;
    keepalive_timeout  120;

    gzip  on;
    gzip_comp_level 2;
    
    gzip_types text/plain application/x-javascript text/css application/xml;

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;
        
        
        #C/C++ cgi program
        #location ~ .cgi$ {
        #   fastcgi_pass   127.0.0.1:9080;
        #   fastcgi_index  index.cgi;
        #   fastcgi_param  SCRIPT_FILENAME  fastcgi_temp$fastcgi_script_name;
        #   include        fastcgi_params;
        #}

        #location / {
        #    root   html;
        #    index  index.html index.htm;
        #}
        
        
         location /fcgi1.cgi$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.cgi;
            fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
            include        fastcgi_params;
        }
        
        location /fcgi2.cgi$ {
            fastcgi_pass   127.0.0.1:9001;
            fastcgi_index  index.cgi;
            fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
            include        fastcgi_params;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
        
       

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ .php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ .php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}
        

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}


但是当我操作是,输入http://127.0.0.1/fcgi1.cgi时,没有执行

看log

2014/10/17 23:42:42 [error] 12434#0: *2 open() "/usr/local/nginx/html/fcgi1.cgi" failed (2: No such file or directory), client: 127.0.0.1, server: localhost, request: "GET /fcgi1.cgi HTTP/1.1", host: "127.0.0.1"
2014/10/17 23:44:37 [info] 12434#0: *2 client 127.0.0.1 closed keepalive connection

请教我配置那里有问题


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

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

发布评论

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

评论(2

旧伤慢歌 2021-11-27 15:05:23

小弟刚接触nginx不是,很明白啊

柳若烟 2021-11-24 05:44:03

回复
请问搞定了吗?

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