91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Nginx學習筆記(一)

發布時間:2020-06-07 19:07:39 來源:網絡 閱讀:417 作者:PowerMichael 欄目:建站服務器

Nginx學習筆記(一)

一、Nginx的特點與作用

     Nginx可以更快地響應請求。

     Web和反向代理服務器

     支持非常多的服務器軟件特性

     處理靜態資源

     用作反向代理

     用作負載均衡

二、Nginx編譯安裝    

 2.1 準備工作

  操作系統:CentOS7.3 IP地址:10.0.0.110

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

 2.2 添加用戶

useradd -r nginx

 2.3 編譯安裝  

    ./configure --prefix=/usr/local/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 --user=nginx --group=nginx --with-http_ssl_module --with-http_v2_module --with-http_dav_module --with-http_stub_status_module --with-threads --with-file-aio

     make && make install

三、簡單web站點配置

 3.1設置環境變量  

  vi /etc/profile.d/nginx.sh #在最后一行加入下面字段

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

 3.2啟動nginx

  nginx

 3.3配置nginx的web站點

  說明:站點A:www.huwho.cn URL映射的根目錄:/nginx/web  

     站點B:blog.huwho.cn URL映射的根目錄:/nginx/blog

  編譯配置文件

   vi /etc/nginx.conf   

   站點A配置段如下:

server {
        listen       80;
        server_name  www.huwho.cn;
            root /nginx/web;
            index index.html;
        #charset koi8-r;
        #access_log  logs/host.access.log  main;
        location /p_w_picpaths/ {
            root   /nginx/;
        }
        #error_page  404              /404.html;
        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

    站點B配置段如下:

 server {
        listen 80;
        server_name blog.huwho.cn;
        root /nginx/blog;
        index index.html;
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
      }
}

 3.4測試nginx語法

[root@pxe31 nginx]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

 3.5重載nginx

[root@pxe31 nginx]# nginx -s reload

 3.6站點目錄以及文件配置

  mkdir /nginx/{web,blog}

  echo www.huwho.cn > /nginx/web/index.html  

  echo blog.huwho.cn > /nginx/blog/index.html  

 3.7修改windows的hosts文件

Nginx學習筆記(一)

 3.8訪問測試

  Nginx學習筆記(一)

Nginx學習筆記(一)


向AI問一下細節

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

AI

资阳市| 普洱| 甘南县| 峨眉山市| 冕宁县| 龙州县| 邵阳县| 上杭县| 郑州市| 南京市| 安平县| 荣昌县| 朝阳县| 长武县| 景德镇市| 苗栗市| 南安市| 阜新| 陵川县| 项城市| 鹤庆县| 神池县| 石首市| 宣汉县| 绥阳县| 会理县| 江津市| 沙坪坝区| 康定县| 沂源县| 民权县| 嵊州市| 七台河市| 平顶山市| 永新县| 乐安县| 新和县| 韶关市| 邯郸县| 从化市| 南投市|