刚看到nginx这个词,我很好奇它的读法(engine x),我的直译是“引擎x”,一般引“擎代”表了性能,而“x”大多出现是表示“xtras(额外的效果)”,那么整个词的意思就是类似“极致效果”,“额外性能”。当然这里不是要来唠嗑,以上是题外话。nginx相较于我们熟悉的apache、IIS的优势...
1.在ubuntu下安装配置nginx, mysql, php安装步骤:参考:https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-on-ubuntu-12-0...
分类:
Web程序 时间:
2014-07-18 16:29:36
阅读次数:
302
在配置中加上location ~ .*\.(php|php5)?$ {fastcgi_pass 127.0.0.1:9000;fastcgi_read_timeout 700;fastcgi_index index.php;include fastcgi.conf;}
分类:
Web程序 时间:
2014-07-18 15:17:43
阅读次数:
335
Nginx与PHP结合,nginx解析动态网页,而php动态网页交给php处理,解决方案:---从nginx的角度使用nginx的代理模块使用FastCGI模块---从php的角度以php-fpm方式运行php自带的fastcgi serverlighttpd带的spawn-fcgi 1)php安....
分类:
Web程序 时间:
2014-07-16 18:48:25
阅读次数:
310
LNMP(Linux-Nginx-Mysql-PHP),本文在CentOS7.0上编译LNMP尝尝鲜,全文基本上都是采用手动编译部署...依赖yum帮我安装了GCC和automake..写这个东西耗时有点久了...尼玛太花时间啦,Linux运维交流群:344177552
主要软件版本:nginx-1.6.0
php-5.3.5
mysql-5.5.6
yum源配置(其实..
分类:
其他好文 时间:
2014-07-14 11:29:23
阅读次数:
244
开始前的准备PHP安装包下载:http://windows.php.net/downloads/releases/php-5.5.14-Win32-VC11-x86.zipNginx 下载地址:http://nginx.org/download/nginx-1.6.0.zipRunHiddenCon...
优化性能参数设置,在ngnix.conf中的http 层加上fastcgi参数如下:
http {
fastcgi_cache_path /usr/local/nginx/fastcgi_cache levels=1:2 keys_zone=TEST:10m inactive=5m;
fastcgi_connect_timeout=300;
fastcgi_send_timeout=30...
分类:
其他好文 时间:
2014-07-13 17:17:07
阅读次数:
218
配置nginx支持php 出现了No input file specified ?
只要修改下安装目录下的 nginx.conf下的
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index ...
分类:
Web程序 时间:
2014-07-13 16:16:48
阅读次数:
270
执行:
./configure --prefix=/usr/local/php --enable-fastcgi --enable-fpm
之后出现
Running FastCGI Process Manager checks
checking for php-fpm config file path... $prefix/etc/php-fpm.conf
checking for ...
分类:
其他好文 时间:
2014-07-13 13:50:43
阅读次数:
205
Jetty入门
基本功能介绍
配置概览-怎么配置Jetty
配置概览-需要配置什么
Jetty配置
部署到Jetty
配置上下文
配置连接器
配置安全
配置JSP支持
Jetty管理指导
启动Jetty
Session管理
配置JNDI
注解
JMX
SPDY
ALPN
NPN
FastCGI支持
打包Servlets、Filters和Handlers...
分类:
其他好文 时间:
2014-07-12 21:32:40
阅读次数:
245