中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

nginx-1.12.0版本(編譯安裝)-自定義安裝路徑

發布時間:2020-07-18 03:33:12 來源:網絡 閱讀:1970 作者:CzlunSu 欄目:建站服務器

nginx-1.12.0版本(編譯安裝)-自定義安裝路徑

安裝路徑:/application/nginx-1.12.0

1.前期準備

安裝編譯需要的gccgcc-c++

yum install -y gcc gcc-c++

nginx依賴

pcre-developenssl-develzlib-devel

yum install -y pcre pcre-devel openssl openssl-devel zlib zlib-devel

創建用戶nginx,以該用戶的身份執行nginx

useradd -s /bin/false -M nginx

下載nginx源碼包并解壓到當前目錄

cd /tools
wget http://nginx.org/download/nginx-1.12.0.tar.gz
tar -zxf nginx-1.12.0.tar.gz

 

2.nginx編譯安裝

生成Makefile文件

cd nginx-1.12.0
./configure --user=nginx --group=nginx --prefix=/application/nginx-1.12.0/ --with-http_v2_module --with-http_ssl_module --with-http_sub_module --with-http_stub_status_module --with-http_gzip_static_module --with-pcre

編譯源代碼并安裝

make && make install

 

3.后期結尾

給nginx-1.12.0創建軟鏈接去掉末尾的版本號

ln -s /application/nginx-1.12.0/ /application/nginx

添加環境變量

創建nginx命令軟鏈接到環境變量

ln -s /application/nginx/sbin/* /usr/local/sbin/

 

4.配置nginx開啟php支持

在server段中開啟php支持

cd /application/nginx
vim conf/nginx.conf


找到如下內容,刪除注釋字符,并將倒數第二行的 /scripts 替換為 $document_root

修改前

#location ~ \.php$ {

#    root           html;

#    fastcgi_pass   127.0.0.1:9000;

#    fastcgi_index  index.php;

#    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;

#    include        fastcgi_params;

#}

修改后

location ~ \.php$ {

root           html;

fastcgi_pass   127.0.0.1:9000;

fastcgi_index  index.php;

fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;

include        fastcgi_params;

}

該段代碼在server中的位置:

server {

    listen       80;

    server_name  localhost;

    location / {

        root   html;

        index  index.php index.html index.htm;

    }

    location ~ \.php$ {

    root           html;

    fastcgi_pass   127.0.0.1:9000;

    fastcgi_index  index.php;

    fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;

    include        fastcgi_params;

    }

}

注意:location ~ \.php$ {}塊中root的值和location / {}塊中root的值需要一致

 

5.常用命令

檢查配置文件

nginx -t

指定其他配置文件啟動nginx

nginx -c /application/nginx/conf/nginx.conf.bak

啟動nginx

nginx

停止nginx

nginx -s stop

重啟nginx

nginx -s reload

參數解釋

-s stop 快速停止nginx

-s quit 平滑停止nginx

-s reopen 重新打開日志文件

-s reload 平滑重載所有配置

 

6.目錄介紹

 [root@www nginx]# tree
.
├── conf  #配置文件目錄
│   ├── fastcgi.conf
│   ├── fastcgi.conf.default
│   ├── fastcgi_params
│   ├── fastcgi_params.default  #fastcgi *配合php
│   ├── koi-utf
│   ├── koi-win
│   ├── mime.types  #mime 媒體類型
│   ├── mime.types.default
│   ├── nginx.conf  #nginx主配置文件
│   ├── nginx.conf.default
│   ├── scgi_params
│   ├── scgi_params.default
│   ├── uwsgi_params
│   ├── uwsgi_params.default
│   └── win-utf
├── html  #默認站點目錄
│   ├── 50x.html
│   └── index.html
├── logs  #訪問日志、錯誤日志、pid文件目錄
│   ├── access.log  #訪問日志
│   ├── error.log  #錯誤日志
│   └── nginx.pid  #pid文件
└── sbin  #命令目錄
└── nginx  #nginx命令文件


 


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

左贡县| 枣阳市| 怀宁县| 方城县| 美姑县| 响水县| 泾川县| 渝中区| 金堂县| 仪征市| 慈利县| 正镶白旗| 汶川县| 霍山县| 阳山县| 基隆市| 武平县| 东方市| 都江堰市| 锡林郭勒盟| 徐闻县| 斗六市| 通道| 六盘水市| 黔南| 台东县| 万源市| 南充市| 南召县| 衢州市| 应用必备| 都昌县| 竹北市| 钟山县| 德州市| 宁德市| 广水市| 西藏| 平原县| 达州市| 交城县|