Questions tagged «fastcgi»

2
“ mod_fastcgi”和“ mod_fcgid”有什么区别?
我正在编写一个快速的CGI应用程序,以与我在Ubuntu Linux上的Apache 2.2(prefork)一起使用。 我需要在mod_fastcgi和之间进行选择mod_fcgid,但是我找不到任何记录差异的资源(如果有的话)来帮助我决定使用Apache启用哪个资源。 谁知道使用mod_fastcgi/ 的区别/优点/缺点mod_fcgid是什么?


1
Nginx提供C ++ cgi脚本:响应是二进制格式
我试图在nginx上运行C ++ CGI脚本。我正在使用来自nginx网站的脚本的FCGIWrap。程序代码是这样的: #include <iostream> using namespace std; int main () { cout << "Content-type:text/html\n\n"; cout << "<html>\n"; cout << "<head>\n"; cout << "<title>Hello World - First CGI Program</title>\n"; cout << "</head>\n"; cout << "<body>\n"; cout << "<h2>Hello World! This is my first CGI program</h2>\n"; cout << "</body>\n"; cout << …
centos  nginx  c++  cgi  fastcgi 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.