国产乱人乱精一区二区视频密-国产乱码在线精品可播放-国产乱码一区二区三区-国产乱码精品一区二区三区四川人-天天操狠狠-天天操国产

nginx的基本使用(常用命令,配置說(shuō)明,反向代理)

發(fā)布時(shí)間:2022-01-10 10:38   瀏覽次數(shù):1386次   作者:平臺(tái)出租

nginx的基本使用(常用命令,配置說(shuō)明,反向代理)

一.常用命令

  1. 查看幫助,命令:nginx -h

  2. 檢查配置文件是否存在問(wèn)題,命令:nginx -t 配置文件路徑(nginx.conf)

  3. 根據(jù)指定配置文件啟動(dòng),命令:nginx -c 配置文件路徑(nginx.conf)

  4. 暴力停止服務(wù),命令:nginx -s stop

  5. 優(yōu)雅停止服務(wù),命令:nginx -s quit

  6. 重新加載配置文件,命令:nginx -s reload

二. 配置說(shuō)明

Nginx配置文件結(jié)構(gòu)主要分為五部分,分別是:

  1. 全局部分:主要設(shè)置一些全局參數(shù),比如:用戶組,最大連接數(shù),超時(shí)時(shí)間,日志文件存放路徑等;

  2. events部分:配置網(wǎng)絡(luò)連接相關(guān)設(shè)置,比如每個(gè)進(jìn)程最大網(wǎng)絡(luò)連接數(shù);

  3. http部分:http包含多個(gè)server,配置代理,緩存或第三方模塊;

  4. server部分:配置服務(wù)器相關(guān)參數(shù),比如服務(wù)器地址,監(jiān)聽(tīng)的端口;

  5. location部分:配置請(qǐng)求路由,根據(jù)規(guī)則比配;

結(jié)構(gòu)如下:

...              #全局部分

events {         #events部分
   ...
}

http      #http部分
{
    ...   #http全局部分
    server        #server部分
    { 
        ...       #server全局部分
        location [PATTERN]   #location部分
        {
            ...
        }
        location [PATTERN] 
        {
            ...
        }
    }
    server
    {
      ...
    }
    ...     #http全局部分
}


詳細(xì)結(jié)構(gòu)如下:


########### 每個(gè)指令必須有分號(hào)結(jié)束。#################
#user administrator administrators;  #配置用戶或者組,默認(rèn)為nobody nobody。
#worker_processes 2;  #允許生成的進(jìn)程數(shù),默認(rèn)為1
#pid /nginx/pid/nginx.pid;   #指定nginx進(jìn)程運(yùn)行文件存放地址
error_log log/error.log debug;  #制定日志路徑,級(jí)別。這個(gè)設(shè)置可以放入全局塊,http塊,server塊,級(jí)別以此為:debug|info|notice|warn|error|crit|alert|emerg
events {
    accept_mutex on;   #設(shè)置網(wǎng)路連接序列化,防止驚群現(xiàn)象發(fā)生,默認(rèn)為on
    multi_accept on;  #設(shè)置一個(gè)進(jìn)程是否同時(shí)接受多個(gè)網(wǎng)絡(luò)連接,默認(rèn)為off
    #use epoll;      #事件驅(qū)動(dòng)模型,select|poll|kqueue|epoll|resig|/dev/poll|eventport
    worker_connections  1024;    #最大連接數(shù),默認(rèn)為512
}
http {
    include       mime.types;   #文件擴(kuò)展名與文件類型映射表
    default_type  application/octet-stream; #默認(rèn)文件類型,默認(rèn)為text/plain
    #access_log off; #取消服務(wù)日志    
    log_format myFormat '$remote_addr–$remote_user [$time_local] $request $status $body_bytes_sent $http_referer $http_user_agent $http_x_forwarded_for'; #自定義格式
    access_log log/access.log myFormat;  #combined為日志格式的默認(rèn)值
    sendfile on;   #允許sendfile方式傳輸文件,默認(rèn)為off,可以在http塊,server塊,location塊。
    sendfile_max_chunk 100k;  #每個(gè)進(jìn)程每次調(diào)用傳輸數(shù)量不能大于設(shè)定的值,默認(rèn)為0,即不設(shè)上限。
    keepalive_timeout 65;  #連接超時(shí)時(shí)間,默認(rèn)為75s,可以在http,server,location塊。

    upstream mysvr {   
      server 127.0.0.1:7878;
      server 192.168.10.121:3333 backup;  #熱備
    }
    error_page 404 https://www.baidu.com; #錯(cuò)誤頁(yè)
    server {
        keepalive_requests 120; #單連接請(qǐng)求上限次數(shù)。
        listen       4545;   #監(jiān)聽(tīng)端口
        server_name  127.0.0.1;   #監(jiān)聽(tīng)地址       
        location  ~*^.+$ {       #請(qǐng)求的url過(guò)濾,正則匹配,~為區(qū)分大小寫(xiě),~*為不區(qū)分大小寫(xiě)。
           #root path;  #根目錄
           #index vv.txt;  #設(shè)置默認(rèn)頁(yè)
           proxy_pass  http://mysvr;  #請(qǐng)求轉(zhuǎn)向mysvr 定義的服務(wù)器列表
           deny 127.0.0.1;  #拒絕的ip
           allow 172.18.5.54; #允許的ip           
        } 
    }
}


三. 反向代理

如有一個(gè)服務(wù),地址是:192.168.161.120 端口為:9080
假設(shè)我需要通過(guò)192.168.161.120直接訪問(wèn)這個(gè)服務(wù),配置如下:

server {
		listen 80;
		server_name 192.168.161.120;
		#charset koi8-r;

		#access_log logs/host.access.log main;

		location /{
			proxy_pass http://192.168.161.120:9080;
			root html;
			index index.html index.htm;
		}
}


四. 跨域訪問(wèn)

    在前后端分離部署的情況,時(shí)常會(huì)遇到session失效的問(wèn)題,這通常是因?yàn)榭缬蛟斐傻模莕ginx就能很好的解決這個(gè)問(wèn)題;

   比如前端服務(wù)地址為:192.168.161.120 端口為:9080;后端接口地址為:192.168.161.121 端口為:8080,則配置如下:

 server {
		listen 80;
		server_name 192.168.161.120;
		#charset koi8-r;

		#access_log logs/host.access.log main;
		#前端訪問(wèn)配置
        location /{
			proxy_pass http://192.168.161.120:9080/;
			proxy_set_header Host $host;
			proxy_set_header X-Real-IP $remote_addr;
			proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
			proxy_set_header Cookie $http_cookie;
			proxy_ignore_headers Set-Cookie;
			add_header Access-Control-Allow-Origin *;
		}
		
		#后端訪問(wèn)接口配置
		location /api/{
			proxy_pass http://192.168.161.120:8080/;
			proxy_set_header Host $host;
			proxy_set_header X-Real-IP $remote_addr;
			proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
			proxy_set_header Cookie $http_cookie;
			proxy_ignore_headers Set-Cookie;
			add_header Access-Control-Allow-Origin *;
		}
	}


五. 配置文件中root和alias區(qū)別

     1. root方式的處理結(jié)果是:root路徑+location路徑;

     2. alias方式的處理結(jié)果是:alias路徑替換location路徑;

    如下所示:訪問(wèn)

http://192.168.161.120/img/test.png; 實(shí)際存儲(chǔ)目錄為:/itcdns/static/img/test.png
#root方式
location /img/ {
       root /itcdns/static/;
}
#alias方式,
location /img/ {
      alias /itcdns/static/img/;
}


通過(guò)http://192.168.161.120/img/test.png就可以訪問(wèn)到圖片了?。?!