最近项目要求要学习一下nginx的知识,由于自己学疏才浅,搞了一天多终于基本搭建出来了,怕日后忘记,所以在此记录一下nginx的历史,应用和种种就不记录了,自行百度。。。。。Fcgi 相比cgi的好处就是 它可以一直执行着,不会每次都要花费时间去fork一次可以参考 http://www.cnblo...
今天分享的是QQ音乐API搜索歌曲API:http://s.music.qq.com/fcgi-bin/music_search_new_platform?t=0& amp;n={2}&aggr=1&cr=1&loginUin={3}&format=json&inCharset=GB2312&out...
分类:
Windows程序 时间:
2015-12-20 08:10:56
阅读次数:
1688
lighttpd, web.py, spawning fcgi failed基于web.py的程序开发起来还是非常简单的,但是我没想到在服务器上部署的时候却遇到了不少麻烦。我用的 web server 是 lighttpd,不能正常启动,查看错误日志,发现如下几行:2009-12-15 19:48:...
分类:
Web程序 时间:
2015-11-25 00:20:47
阅读次数:
198
LAMP组合的编译安装:httpd+php整合时有两种方式:1.modules:把php编译成httpd的DSO对象;prefork:libphp5event,worker:libphp5-zts--enable-maintainer-zts2.fpm(fastcgi):php作为独立的服务httpd对fastcgi协议的支持:httpd-2.2:需要额外安装fcgi模块;httpd-2.4:自带fcgi模..
分类:
系统相关 时间:
2015-10-07 06:24:58
阅读次数:
483
php模块服务配置配置如下vim/usr/local/nginx_php/etc/php-fpm.conf[global]pid=/usr/local/nginx_php/var/run/php-fpm.piderror_log=/usr/local/nginx_php/var/log/php-fpm.log[www]listen=/tmp/php-fcgi.sockuser=php-fpm;运行用户group=php-fpm;组listen.owner=nobody;监听p..
分类:
Web程序 时间:
2015-10-02 06:45:10
阅读次数:
167
IKI Links: CGI - http://en.wikipedia.org/wiki/Common_Gateway_Interface FCGI - http://en.wikipedia.org/wiki/Fcgi SCGI - http://en.wikipedia.org/wiki/SC...
分类:
其他好文 时间:
2015-09-26 18:28:25
阅读次数:
151
参考:http://github.tiankonguse.com/blog/2015/01/19/cgi-nginx-three/跟着做了一遍,然后根据记忆写的,不清楚有没错漏步骤,希望多多评论多多交流。。。搭建环境安装:nginx、spawn-fcgi、fastcgi、fcgiwrapnginxs...
分类:
其他好文 时间:
2015-09-23 21:05:50
阅读次数:
233
安装源 wget?http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
rpm?-Uvh?epel-release*rpm
yum?install?fcgi-devel?spawn-fcgi?-y 编译安装fcgiwrap git?clone?git://githu...
分类:
其他好文 时间:
2015-08-12 17:06:46
阅读次数:
249
PHP 常量PHP_SAPI具有和php_sapi_name()相同的值。1 define('IS_CGI',(0 === strpos(PHP_SAPI,'cgi') || false !== strpos(PHP_SAPI,'fcgi')) ? 1 : 0 );2 define('IS_WIN'...
什么是CGI CGI全称是“公共网关接口”(Common Gateway Interface),HTTP服务器与你的或其它机器上的程序进行“交谈”的一种工具,其程序须运行在网络服务器上。 CGI可以用任何一种语言编写,只要这种语言具有标准输入、输出和环境变量。如php,perl,tcl等 什么...
分类:
Web程序 时间:
2015-08-10 17:43:42
阅读次数:
148