nginx源码安装
1,首先解决系统环境:
安装rpm包组{CentOS6 跟开发相关的包组:}
a. Development Tools
#yum groupinstall "Development Tools"
b. Server Platform Development
#yum groupinstall "Server Platform Development"
c. Desktop Platform Development
#yum groupinstall "Desktop Platform Development"
yum install -y gcc pcre pcre-devel openssl openssl-devel gd gd-devel perl perl-ExtUtils-Embed
2,解决nginx源码
官方网站下载地址:http://nginx.org/download/
3,。安装
./configure --prefix=/usr/local/nginx --with-pcre --user=daemon --group=daemon --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module
make
make install
二、Nginx编译选项
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
1、默认自动编译项 禁用选项Core:Nginx核心功能, --without-httpAccess:基于IP的访问控制 --without-http_access_moduleAuth Basic:HTTP用户认证模块 --without-http_auth_basic_moduleAuto Index:自动目录索引 --without-http_autoindex_moduleBrowser:描述用户代理 --without-http_charset_moduleCharset:重新编码网页 --without-http_charset_moduleEmpty GIF:内存中存放一个图片 --without-http_empty_gif_moduleFastCGI:FastCGI支持 --without-http_fastcgi_moduleGeo:支持IP变量设置 --without-http_geo_moduleGzip:Gzip压缩 --without-http_gzip_moduleLimit Requests:限制客户端连接频率 --without-http_limit_req_moduleLimit Conn:挥发的并发连接 --without-http_limit_conn_moduleMap:设置变量 --without-http_map_moduleMemcached:Memcache支持 --without-http_memcached_moduleReferer:基于Referer头部信息过滤 --without-http_referer_moduleRewrite:使用正则表达式重写请求 --without-http_rewrite_moduleSCGI:支持SCGI协议 --without-http_scgi_moduleUpstream:负载均衡 --without-http_upstream_ip_hash_moduleHeaders:设置http响应的头部信息Index:首页Log:自定义日志 |
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
2、内置模块中的附加模块,需要在编译时手动开启 开启选项Embedded Perl:支持Perl --with-http_perl_moduleFLV:支持Flash视频 --with-http_flv_moduleGeoIP:通过IP变量实现负载均衡 --with-http_geoip_moduleGoogle Perftools:支持谷歌的性能优化工具 --with-google_perftools_moduleGzip Precompression:压缩静态文件 --with-http_gzip_static_moduleImage Filter:转换图形的过滤器 --with-http_image_filter_moduleMP4:支持MP4 --with-http_mp4_moduleReal IP:使用Nginx作为后端服务器 --with-http_realip_moduleSecure Link:使用密匙保护页面 --with-http_secure_link_moduleSSL:支持HTTPS/SSL --with-http_ssl_moduleStub Status:查看服务器状态 --with-http_stub_status_moduleWebDAV:支持WebDAV --with-http_dav_module------------------------------------------Core:邮件代理功能 --with-mailCore:邮件代理功能 --without-mail_pop3_moduleCore:邮件代理功能 --without-mail_imap_moduleCore:邮件代理功能 --without-mail_smtp_module------------------------------------------SSL:支持SSL/TLS加密邮件协议 --with-mail_ssl_module |
nginx源码安装的更多相关文章
- Nginx源码安装及调优配置
导读 由于Nginx本身的一些优点,轻量,开源,易用,越来越多的公司使用nginx作为自己公司的web应用服务器,本文详细介绍nginx源码安装的同时并对nginx进行优化配置. Nginx编译前的优 ...
- Nginx源码安装及调优配置(转)
导读 由于Nginx本身的一些优点,轻量,开源,易用,越来越多的公司使用nginx作为自己公司的web应用服务器,本文详细介绍nginx源码安装的同时并对nginx进行优化配置. Nginx编译前 ...
- nginx源码安装方法
nginx源码安装方法 安装方法如下 1.安装nginx必要的源码依赖软件包. yum -y install gcc gcc-c++ automake pcre pcre-devel zlib zli ...
- nginx 源码安装的重启命令
源码安装nginx就面临这样的麻烦,不能使用service nginx restart 来重启nginx,没办法只能重新加载下nginx. #/usr/local/nginx/sbin/nginx - ...
- nginx源码安装教程(CentOS)
1.说明 官方源码安装说明:http://nginx.org/en/docs/configure.html 源码包下载地址:http://nginx.org/en/download.html 版本说明 ...
- nginx 源码安装以及后续升级https
事情的来源是,公司要将网站从http升级到https,由于历史遗留原因,才发现现有的nginx是通过源码安装的,并没有安装ssl模块,需要现安装sll模块,这个nginx是整个公司最前端的一个代理,涉 ...
- Nginx源码安装配置
Nginx web服务器简介 Nginx ("engine x") 是一个高性能HTTP 和 反向代理 服务器.IMAP.POP3.SMTP 服务器. Nginx 是由 Igor ...
- nginx 源码安装配置详解(./configure)
在"./configure"配置中,"--with"表示启用模块,也就是说这些模块在编译时不会自动构建,"--without"表示禁用模块, ...
- Nginx 源码安装和调优
常见web架构: LAMP =Linux+Apache+Mysql+PHP LNMP =Linux+Nginx+Mysql+PHP nginx概述: 知道:1 不知道:2 Nginx (&q ...
随机推荐
- Ball Tracking with OpenCV
http://www.pyimagesearch.com/2015/09/14/ball-tracking-with-opencv/
- lodash的运用
Object 对象 1._.merge(object, [sources]) 此方法类似于_.assign,除了它递归地将源对象的自有和继承的可枚举字符串键控属性合并到目标对象中. 如果存在目标值,将 ...
- boost 1.57.0安装
一. PC编译安装boost boost是C++的准标准库,其有两种安装方法. 1. ubuntu下,通过sudo apt-get install libboost-all-dev. 2. 通过源码包 ...
- 读取plist
- (NSArray *)imageData { if (_imageData == nil) { // 从未初始化 // 初始化数据 // File : 全路径 // NSBundle : 一个NS ...
- jquery文字溢出处理,超出变省略号
//文字溢出 $(function(){ $(".d_dt a").each(function(){ var maxwidth =100; if($(this).text().le ...
- Redo丢失场景和处理方法
Redo丢失场景和处理方法 Type of Failure Status Column of V$LOG Action One member failed in multiplexed group N ...
- Synchronized及其实现原理
并发编程中synchronized一直是元老级角色,我们称之为重量级锁.主要用在三个地方: 1.修饰普通方法,锁是当前实例对象. 2.修饰类方法,锁是当前类的Class对象. 3.修饰代码块,锁是sy ...
- JMX超详细解读
一.JMX的定义 JMX(Java Management Extensions)是一个为应用程序植入管理功能的框架.JMX是一套标准的代理和服务,实际上,用户可以在任何Java应用程序中使用这些代理和 ...
- 安装windowbuilder错误一例
eclipse是3.7版本,安装了windowbuilder,大致步骤如下: http://www.cnblogs.com/gladto/archive/2011/07/21/2112836.html ...
- Swift游戏实战-跑酷熊猫 08 产生源源不断的移动平台
原理 代码实现 这节内容我们一起学习下平台的生产算法. 要点: 何时生成新的平台: 当上一个平台的右边完全进入场景的时候,就可以生成新的平台类. 如何知道上一个平台完全进入场景: 主场景中有个变量la ...