亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

泰来县| 佛坪县| 墨玉县| 扶绥县| 图片| 格尔木市| 白沙| 临颍县| 禹城市| 柳林县| 黎城县| 贵德县| 龙岩市| 房产| 常宁市| 新绛县| 华安县| 米脂县| 普洱| 甘南县| 鄂州市| 乐至县| 科技| 准格尔旗| 天门市| 合山市| 孝感市| 南安市| 大石桥市| 长泰县| 高阳县| 佛教| 东兰县| 和平县| 伊金霍洛旗| 晋宁县| 楚雄市| 乌拉特前旗| 新巴尔虎左旗| 分宜县| 棋牌|