安装nginx
-
下载ngin
在linux下执行下面命令:
cd /usr/src #一般软件源码放在这个目录下 wget http://nginx.org/download/nginx-1.8.0.tar.gz #下载
-
在nginx安装之前需要先安装依赖
执行代码如下:
yum -y install zlib-devel pcre-devel openssl-devel
- 安装pcre 是一个Perl库,包括 perl 兼容的正则表达式库.
- 安装zlib 是为了gzip解压缩.
- 安装openssl 是为了让服务器支持ssl.
-
解压编译安装
-
解压
tar -zxvf nginx-1.8.0.tar.gz
-
预编译
cd nginx-1.8.0 #进入nginx目录 ./configure --prefix=/usr/local/nginx --with-openssl=/usr/include/openssl --with-pcre --with-http_stub_status_module
--prefix=/usr/local/nginx 指定安装目录为/usr/local/nginx。
--with-http_stub_status_module 启用ssl。
--with-pcre 启用正规表达式。
--with-http_stub_status_module 安装可以查看nginx状态的程序。
-
编译
make
-
安装
make install
现在,输入命令
ls /usr/local/nginx/
如果看见有以下文件的存在,则说明安装成功。
conf html logs sbin
-
启动nginx
/usr/local/nginx/sbin/nginx
现在打开浏览器,输入127.0.0.1:80。就会弹出以下界面。
如果是服务器上可以使用以下命令查看curl 127.0.0.1:80
-