Centos下安装nginx rpm包 www.169it.com1 在nginx官方网站下载一个rpm包,下载地址是:http://nginx.org/en/download....
分类:
系统相关 时间:
2014-08-21 16:46:04
阅读次数:
225
Nginx自1.1.4以后内置支持UpstreamKeepalive配置。
upstreamhttp_backend{
server127.0.0.1:8080;
keepalive16;
}
server{
...
location/http/{
proxy_passhttp://http_backend;
proxy_http_version1.1;
proxy_set_headerConnection"";
...
}
}更多细节可参考:http://ngin..
分类:
其他好文 时间:
2014-08-21 15:17:45
阅读次数:
395
需求:一个php程序要跑一段时间,但是时间不确定。问题:当该php程序运行超过一段时间被强制断开连接。PHP本身超时处理在php.ini中,有一个参数max_execution_time可以设置PHP脚本的最大执行时间,但是,在php-cgi(php-fpm)中,该参数不会起效。真正能够控制PHP脚本最大执行时..
分类:
其他好文 时间:
2014-08-21 15:14:24
阅读次数:
210
LAMP缓存图从图中我们可以看到网站缓存主要分为五部分服务器缓存:主要是基于web反向代理的静态服务器nginx和squid,还有apache2的mod_proxy和mod_cache模浏览器缓存:包括页面html缓存和图片js,css等资源的缓存PHP缓存:有很多免费的PHP缓冲加速工具,如apc...
分类:
其他好文 时间:
2014-08-21 12:50:34
阅读次数:
181
1、编译
./configure --prefix=/home/fangjian/study/code/nginx-1.4.4/nginx --add-module=/home/fangjian/study/code
make
make install...
分类:
其他好文 时间:
2014-08-21 11:33:34
阅读次数:
222
void ngx_process_events_and_timers(ngx_cycle_t *cycle) { ngx_uint_t flags; ngx_msec_t timer, delta; if (ngx_timer_resolution) { timer = NGX_TIMER_INFINITE; flags =...
分类:
其他好文 时间:
2014-08-21 00:19:13
阅读次数:
212
odeigniter(CI)是一个轻量型的PHP优秀框架,但是它是在apache服务器下开发的,在nginx下需要特别的配置才可以使用。对nginx的配置如下: 1 server { 2 listen 80 default_server; 3 listen [::]:80 defau...
分类:
其他好文 时间:
2014-08-20 22:34:23
阅读次数:
305
1.nginx 官方脚本地址:http://wiki.nginx.org/RedHatNginxInitScript 2. #!/bin/sh## nginx - this script starts and stops the nginx daemin## chkconfig: - 85 15 #...
分类:
Web程序 时间:
2014-08-20 15:49:52
阅读次数:
205
server{listen80;server_namelocalhost;#charsetkoi8-r;#access_loglogs/host.access.logmain;location/{roothtml;indexindex.htmlindex.htm;location~.*\.(php|php5)?${fastcgi_passunix:/tmp/php-cgi.sock;fastcgi_indexindex.php;includefastcgi.conf;}auth_basic"Authorize..
分类:
其他好文 时间:
2014-08-20 14:21:52
阅读次数:
238
lnmp的架构lnmp架构为:linux+nginx+mysql+php/perl/python,我们将只用linux(rhel6.5)+nginx+mysql+php构建企业web架构环境:RHEL6.5iptables-Fselinuxisdisabled注意:在搭建lnmp环境前,必须检测系统内部不能存在相关的软件:(纯净搭建)#rpm-qa|grepphp#rpm-qa|grephttpd#rpm-q..
分类:
其他好文 时间:
2014-08-20 10:39:36
阅读次数:
518