共计 1354 个字符,预计需要花费 4 分钟才能阅读完成。
导读 | Nginx 是一款开放源代码的高性能 HTTP 服务器和反向代理服务器,同时支持 IMAP/POP3 代理服务,是一款自由的软件,同时也是运维工程师必会的一种服务器,下面我就简单的说一下 Nginx 服务器的安装和文件解析。 |
简单安装
本教程一 Centos 6.3 为例讲解,软件包可以在官方网站下载,编译安装之前,我们需要使用 YUM 提前将所需的软件依赖包安装完成。
安装命令如下:
[root@centos6 ~]# wget http://nginx.org/download/nginx-1.4.0.tar.gz
[root@centos6 ~]# tar -xzf nginx-1.4.0.tar.gz -C /usr/src
[root@centos6 ~]# yum -y install gcc pcre pcre-devel openssl \
>openssl-devel gd gd-devel perl perl-ExtUtils-Embed
[root@centos6 ~]# cd /usr/src/nginx-1.4.0/
[root@centos6 nginx-1.4.0]# ./configure --prefix=/usr/local/nginx \
>--with-ipv6 \
>--with-http_ssl_module \
>--with-http_realip_module \
>--with-http_addition_module \
>--with-http_dav_module \
>--with-http_flv_module \
>--with-http_mp4_module \
>--with-http_gzip_static_module \
>--with-http_perl_module \
>--with-mail \
>--with_main_ssl_module
[root@centos6 nginx-1.4.0]# make && make install
Nginx Web 服务器软件安装完成后,程序主目录位于 /usr/local/nginx/, 该目录下的内容分别为 cong、html、logs、sbin。下面是 Nginx 常用的进程管理指令:
[root@centos6 ~]# /usr/local/nginx/sbin/nginx #启动主程序
[root@centos6 ~]# /usr/local/nginx/sbin/nginx -c \ #指定配置文件启动主程序
[root@centos6 ~]# /usr/local/nginx/sbin/nginx -s stop #关闭主程序
[root@centos6 ~]# /usr/local/nginx/sbin/nginx -s reload #重新加载设置
配置文件解析
Nginx 默认的配置文件为 /usr/local/nginx/conf/nginx.conf,配置文件包括全局、event、http、server 设置,event 主要用来定义 Nginx 工作模式,http 提供 Web 功能,server 用来设置虚拟主机,server 必须位于 http 内部,一个配置文件中可以有多个 server。
本文原创地址:https://www.linuxprobe.com/nginx-installation-parsing.html 作者:冯琪,审核员:逄增宝
正文完
星哥玩云-微信公众号