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

溫馨提示×

溫馨提示×

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

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

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

汾阳市| 乌兰县| 扎兰屯市| 上饶县| 开化县| 唐海县| 区。| 汝南县| 明光市| 天台县| 清新县| 余姚市| 荥经县| 昔阳县| 西平县| 合阳县| 克什克腾旗| 会东县| 屏边| 台安县| 临邑县| 张北县| 虎林市| 饶河县| 清徐县| 固安县| 礼泉县| 万州区| 高青县| 邵武市| 收藏| 革吉县| 阳东县| 若尔盖县| 安丘市| 福州市| 四平市| 赫章县| 阿城市| 固始县| 台中县|