导读 由于Nginx本身的一些优点,轻量,开源,易用,越来越多的公司使用nginx作为自己公司的web应用服务器,本文详细介绍nginx源码安装的同时并对nginx进行优化配置。 Nginx编译前的优化 [root@linuxprobe ~]# wget http://nginx.org/downl ...
分类:
其他好文 时间:
2016-09-25 15:59:25
阅读次数:
270
1.编译安装nginx1.1安装PCRE(PerlCompatibleRegularExpressions),中文perl兼容正则表达式.bash-4.3~#yum-yinstallpcrepcre-develbash-4.3~#rpm-qa|greppcre*pcre-7.8-7.el6.x86_64pcre-devel-7.8-7.el6.x86_641.2安装opensslbash-4.3~#yum-yinstallopenssl-devel1.3安装Nginxba..
分类:
其他好文 时间:
2016-09-23 00:05:52
阅读次数:
219
一、配置nginx支持https协议访问,需要在编译安装nginx的时候添加相应的模块--with-http_ssl_module 查看nginx编译参数:/usr/local/nginx/sbin/nginx -V 如下所示: configure arguments: --prefix=/usr/ ...
分类:
Web程序 时间:
2016-09-09 16:59:40
阅读次数:
163
#!/bin/bash
DIR=$(cd"$(dirname"$0")"&&pwd)
SRCDIR=/usr/local/src
nginxVersion="1.10.1"
nginxUser=nginx
nginxGroup=nginx
if[$(id-u)-ne0];then
echo"Pleaserunasroot"
exit1
fi
DISTRO=""
Distributions="CentOSUbuntuAmazonRed"
foriin$Distributions
do
cat/e..
分类:
其他好文 时间:
2016-09-02 01:05:05
阅读次数:
169
第一部分----nginx基本应用源码编译安装nginx1、安装pcre软件包(使nginx支持httprewrite模块)yuminstall-ypcre
yuminstall-ypcre-devel2、安装openssl-devel(使nginx支持ssl)yuminstall-yopenssl-devel3、创建用户nginxuseraddnginx
passwdnginx4、安装nginx[root@localhos..
分类:
其他好文 时间:
2016-09-01 00:25:01
阅读次数:
246
http://www.ttlsa.com/nginx/nginx-configure-descriptions/ 标题是不是很欠揍,个人认为确实值得一看,如果你不了解nginx,或者你刚学nginx,或者已经使用nginx一段时间了。但是nginx很多参数你还没去了解,nginx有很多你不知道的用处 ...
分类:
其他好文 时间:
2016-08-26 21:32:29
阅读次数:
152
在Linux系统下,查看nginx、apache、mysql和php的编译参数的方法如下。1、nginx编译参数:your_nginx_dir/sbin/nginx-v2、apache编译参数:catyour_apache_dir/build/config.nice3、php编译参数:your_php_dir/bin/php-i|grepconfigure或者写个php文件输出phpinfo(),在configu..
分类:
数据库 时间:
2016-08-26 15:43:24
阅读次数:
261
#!/bin/bash
DIR=$(cd"$(dirname"$0")"&&pwd)
SRCDIR=/usr/local/src
nginxVersion="1.10.1"
nginxUser=nginx
nginxGroup=nginx
if[$(id-u)-ne0];then
echo"Pleaserunasroot"
exit1
fi
DISTRO=""
Distributions="CentOSUbuntuAmazon"
foriin$Distributions
do
cat/etc/..
分类:
其他好文 时间:
2016-08-23 01:42:39
阅读次数:
194
一、安装相关支持库: yum -y install gcc gcc-c++ autoconf yum -y install openssl openssl-devel pcre:为了重写rewrite, zlib:为了gzip压缩,ngx_pagespeed插件:前端网页访问提速优化插件 (1)pc ...
分类:
其他好文 时间:
2016-08-22 00:09:18
阅读次数:
227