linux (Centos7) 編譯安裝nginx

在引用的博客上面作了修改
html

  • 1、安裝前

        如下部分引用
        一、安裝必備工具:nginx

$ yum -y install gcc gcc-c++ autoconf automake
 
$ yum -y install zlib zlib-devel openssl openssl-devel pcre-devel

說明:c++

pcre: 用來做地址重寫的功能。shell

zlib:nginx 的gzip模塊,傳輸數據打包,省流量(但消耗資源)。dom

openssl:提供ssl加密協議。工具


二、新建一個系統級用戶組和匿名用戶,以及下面編譯時使用加密

$ sudo groupadd -r nginx
 
$ sudo useradd -s /sbin/nologin -g nginx -r nginx-user
  • 2、Nginx編譯安裝:

    一、下載Nginx:http://nginx.org/en/download.htmlspa

    二、編譯:日誌

$ tar -zxvf nginx-1.9.2.tar.gz
 
$ cd nginx-1.9.2/
 
$ ./configure \
--prefix=/etc/nginx \
--sbin-path=/usr/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--http-client-body-temp-path=/var/cache/nginx/client_temp \
--http-proxy-temp-path=/var/cache/nginx/proxy_temp \
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \
--http-scgi-temp-path=/var/cache/nginx/scgi_temp \
--user=nginx \
--group=nginx \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_stub_status_module \
--with-http_auth_request_module \
--with-mail \
--with-mail_ssl_module \
...
...
...
    用下面的命令查看每一項的做用
$ ./configure --help

    編譯日誌就不寫了code

三、安裝

$ make && make install

四、添加進環境變量

$ vi /etc/profile

裝到哪,就寫哪一個文件的路徑,我是默認的

PATH=/usr/local/nginx/sbin:$PATH
export PATH

五、啓動

ginx -c /usr/local/nginx/conf/nginx.conf
相關文章
相關標籤/搜索