共计 1444 个字符,预计需要花费 4 分钟才能阅读完成。
Nginx 在 Linux 上的安装与配置
1.nginx 与依赖库下载
nginx 下载地址:
http://nginx.org/
pcre(Perl Compatible Regular Expressions) 下载地址:
http://www.pcre.org/
https://sourceforge.net/projects/pcre/files/pcre/
zlib 下载地址:
http://www.zlib.net/
2. 安装 pcre:
# tar zxvf pcre-8.35.tar.gz
# cd pcre-8.35
#./configure -prefix=/usr/local/pcre
# make
# make install
3. 安装 zlib:
# tar zxvf zlib-1.2.8.tar.gz
# cd zlib-1.2.8
#./configure -prefix=/usr/local/zlib
# make
# make install
4. 安装 nginx:
# tar -zxvf nginx-1.6.0.tar.gz
# cd nginx-1.6.0
# ./configure –prefix=/usr/local/nginx
# make
# make install
5. 运行 nginx,默认的端口是 80.
# cd /usr/local/nginx
# ./nginx
# ./nginx -s reload
# ./nginx -s stop
测试 nginx,在浏览器输入:
http://localhost
————————————– 分割线 ————————————–
CentOS 6.2 实战部署 Nginx+MySQL+PHP http://www.linuxidc.com/Linux/2013-09/90020.htm
使用 Nginx 搭建 WEB 服务器 http://www.linuxidc.com/Linux/2013-09/89768.htm
搭建基于 Linux6.3+Nginx1.2+PHP5+MySQL5.5 的 Web 服务器全过程 http://www.linuxidc.com/Linux/2013-09/89692.htm
CentOS 6.3 下 Nginx 性能调优 http://www.linuxidc.com/Linux/2013-09/89656.htm
CentOS 6.3 下配置 Nginx 加载 ngx_pagespeed 模块 http://www.linuxidc.com/Linux/2013-09/89657.htm
CentOS 6.4 安装配置 Nginx+Pcre+php-fpm http://www.linuxidc.com/Linux/2013-08/88984.htm
Nginx 安装配置使用详细笔记 http://www.linuxidc.com/Linux/2014-07/104499.htm
Nginx 日志过滤 使用 ngx_log_if 不记录特定日志 http://www.linuxidc.com/Linux/2014-07/104686.htm
————————————– 分割线 ————————————–
Nginx 的详细介绍:请点这里
Nginx 的下载地址:请点这里