1. 程式人生 > 程式設計 >Nginx初步學習

Nginx初步學習

注意事項

  1. 環境: centos7,nginx1.1.6
  2. 在Windows和win10上的linux中做測試,發現配置總也不能生效,而且還少一些必要的檔案,所以不建議在Windows和win10上的linux中學習.

安裝

  1. yum安裝必要的程式
yum -y install gcc gcc-c++ autoconf pcre-devel make automake
yum -y install wget httpd-tools vim
複製程式碼
  1. 配置yum源

vim /etc/yum.repos.d/nginx.repo

[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/7/$basearch
/ gpgcheck=0 enabled=1 複製程式碼
  1. 安裝nginx
yum install nginx
nginx -v
複製程式碼

nginx配置檔案

/etc/nginx/nginx.conf

#執行使用者,預設即是nginx,可以不進行設定
user  nginx;
#Nginx程式,一般設定為和CPU核數一樣
worker_processes  1;   
#錯誤日誌存放目錄
error_log  /var/log/nginx/error.log warn;
#程式pid存放位置
pid        /var/run/nginx.pid;


events {
    worker_connections  1024; # 單個後臺程式的最大併發數
} http { include /etc/nginx/mime.types; #副檔名與型別對映表 default_type application/octet-stream; #預設檔案型別 #設定日誌模式 log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'
; access_log /var/log/nginx/access.log main; #nginx訪問日誌存放位置 sendfile on; #開啟高效傳輸模式 #tcp_nopush on; #減少網路報文段的數量 keepalive_timeout 65; #保持連線的時間,也叫超時時間 #gzip on; #開啟gzip壓縮 include /etc/nginx/conf.d/*.conf; #包含的子配置項位置和檔案 複製程式碼

/etc/conf.d/default.conf

server {
    listen       80;   #配置監聽埠
    server_name  localhost;  //配置域名

    #charset koi8-r;     
    #access_log  /var/log/nginx/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;     #服務預設啟動目錄
        index  index.html index.htm;    #預設訪問檔案
    }

    #error_page  404              /404.html;   # 配置404頁面

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;   #錯誤狀態碼的顯示頁面,配置後需要重啟
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #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;
    #}

    # deny access to .htaccess files,if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}
複製程式碼

nginx相關命令

  1. nginx啟動
方式1: 
nginx

方式2: 
systemctl start nginx.service
複製程式碼
  1. nginx停止
(1) 從容停止服務
nginx -s quit

(2) 立即停止服務
nginx  -s stop

(3) 殺死程式
killall nginx

(4) 服務命令停止
systemctl stop nginx.service
複製程式碼
  1. nginx重啟
(1) 重新載入配置檔案
nginx -s reload
(2) 服務方式停止
systemctl restart nginx.service
複製程式碼

nginx設定虛擬主機

  1. 基於埠號設定虛擬主機
  • nginx預設監聽80埠,此處通過監聽8001埠,服務啟動目錄指向/usr/share/nginx/html/html8001,當使用者訪問http://localhost:8001時,會訪問/usr/share/nginx/html/html8001下的index.html.
  • 通過編寫多個server,達到多個埠號設定虛擬主機的效果
server{
        listen 8001;
        server_name localhost;
        root /usr/share/nginx/html/html8001;
        index index.html;
}
複製程式碼
  1. 基於ip/域名設定虛擬主機
  • 類似於用埠設定虛擬主機,此處使用server_name來設定不同的虛擬主機
  • 通過編寫多個server,達到多個ip/域名設定虛擬主機的效果
server{
        listen 80;
        server_name 112.74.164.244;
        root /usr/share/nginx/html/html8001;
        index index.html;
}
複製程式碼

nginx反向代理

下面程式碼意思是監聽80埠,當使用者訪問nginx2.jspang.com時,將使用者訪問代理到http://jspang.com域名下.

server{
        listen 80;
        server_name nginx2.jspang.com;
        location / {
               proxy_pass http://jspang.com;
        }
}
複製程式碼

其他反向代理命令

  • proxy_set_header :在將客戶端請求傳送給後端伺服器之前,更改來自客戶端的請求頭資訊。

  • proxy_connect_timeout:配置Nginx與後端代理伺服器嘗試建立連線的超時時間。

  • proxy_read_timeout : 配置Nginx向後端伺服器組發出read請求後,等待相應的超時時間。

  • proxy_send_timeout:配置Nginx向後端伺服器組發出write請求後,等待相應的超時時間。

  • proxy_redirect :用於修改後端伺服器返回的響應頭中的Location和Refresh。

$http_user_agent使用

  • if (http_user_agent ~* '(Android|webOS|iPhone|iPod|BlackBerry)') 的意思是如果在http_user_agent存在(Android|webOS|iPhone|iPod|BlackBerry),則認為是手機訪問,將專案啟動根目錄設定到手機部署目錄
  • 在開發中,可能會將pc和phone分開為不同的域名,如pc: www.xxx.com; phone: m.xxx.com; 此時應該通過proxy_pass來實現需求.
server{
        listen 80;
        server_name nginx2.jspang.com;
        location / {
         root /usr/share/nginx/pc;
         if ($http_user_agent ~* '(Android|webOS|iPhone|iPod|BlackBerry)') {
            root /usr/share/nginx/mobile;
         }
         index index.html;
        }
}
複製程式碼