Nginx配置(一)

ngx_http_core_module

alias path;// 如果需要修改 uri,使用它,否则用 root 。它将 location 匹配后剩余的部分作为 uri 。

client_body_in_file_only on; // 主要用于调试。

client_body_temp_path /var/log/nginx/client_body_temp 1 2;

client_max_body_size 1m; // request 超过该大小,返回 413 Entity Too Large 。

default_type application/octet-stream;

types {

text/html json;

}

error_page 404 /4xx.html; // 根据 status code 返回指定内容。

etag on;

if_modified_since before; // 资源 response header 会增加 Last-Modified 指定资源最后修改时间,request hedaer 包含 If-Modified-Since ,并且该资源在这时间之后无修改,则返回 304 Not Modified 状态码,响应体为空,常用于浏览器,可以节约带宽资源,提升响应速度。

keepalive_requests number;

keepalive_time

keepalive_timeout

limit_except GET {

deny all;

} // 除了 GET ,其他方法访问一律拒绝,返回 403 Forbidden 。

limit_rate 1k; // 这将限制 server 每秒向客户端最多发送 1k 的速率。谨慎使用。

lingering_close on; // instructs nginx to wait for and process additional data from a client before fully closing a connection, but only if heuristics suggests that a client may be sending more data.

listen unix:/var/log/nginx/nginx.sock; // 会影响普通 ip:port 的服务,curl --unix-socket ./nginx.sock -X POST http://ng.com/post

log_not_found on; // 404 写入到 error_log 。

merge_slashes on;

root path;

server {
server_name ~^(www.)?(.+)$; // 支持正则表达式

location / {
    root /sites/$2;
}

}

server_tokens off; // 隐藏 Nginx 版本号。

try_files $uri $uri/ /c/default.txt =405; // $uri/ 检查目录是否存在,按顺序返回第一个存在的文件。

变量:

location /d {
        return 200 "age:$arg_age,
        binary_remote_addr:$binary_remote_addr,
        body_bytes_sent:$body_bytes_sent,
        bytes_sent:$bytes_sent,
        connection:$connection,
        connection_requests:$connection_requests,
        connection_time:$connection_time,
        content_length:$content_length,
        content_type:$content_type,
        cookie_id:$cookie_id,
        document_root:$document_root,
        document_uri:$document_uri,
        host:$host,
        hostname:$hostname,
        http_a:$http_a,
        https:$https,
        is_args:$is_args,
        limit_rate:$limit_rate,
        msec:$msec,
        nginx_version:$nginx_version,
        pid:$pid,
        pipe:$pipe,
        proxy_protocol_addr:$proxy_protocol_addr,
        query_string:$query_string,
        realpath_root:$realpath_root,
        remote_addr:$remote_addr,
        remote_port:$remote_port,
        remote_user:$remote_user,
        request:$request,
        request_body:$request_body,
        request_completion:$request_completion,
        request_filename:$request_filename,
        request_id:$request_id,
        request_length:$request_length,
        request_method:$request_method,
        request_time:$request_time,
        request_uri:$request_uri,
        scheme:$scheme,
        server_addr:$server_addr,
        server_name:$server_name,
        server_port:$server_port,
        server_protocol:$server_protocol,
        status:$status,
        time_iso8601:$time_iso8601,
        time_local:$time_local,
        uri:$uri,";
    }

ngx_http_access_module

allow , deny 。控制

ngx_http_addition_module

location /e {
        add_before_body /a/a1.txt;
        add_after_body /a/a1.txt;
        addition_types *;
    }

功能是在 body 前后追加内容。

ngx_http_autoindex_module

location / {
        autoindex on;
        autoindex_format json; //以 json 格式输出
    }

ngx_http_flv_module

 location /flv {
        flv;
    }

支持 flv 视频播放。

ngx_http_headers_module

add_header X-PURE light always; // 不加 always 仅针对特定 status code 。默认会覆盖其他 context 的配置。

ngx_http_mp4_module

location /video {
        sendfile on;
        #mp4;
    }

支持 mp4 文件的 start ,end 参数控制视频时间。

ngx_http_log_module

location / {
    if ($time_iso8601 ~ "^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})") {
            set $year $1;
            set $month $2;
            set $day $3;
            set $hour $4;
            set $minutes $5;
            set $seconds $6;
    }

    access_log /var/log/nginx/ngcom.access.log jlog;
}

http {
    log_format jlog  '{\"method\":\"$request_method\",\"uri\":\"$request_uri\",\"query_string\":\"$query_string\",\"remote_addr\":\"$remote_addr\",\"scheme\":\"$scheme\",\"content_length\":$content_length,\"time_local\":\"$time_local\",\"request_id\":\"$request_id\",\"bytes_sent\":$bytes_sent,\"status\":$status,\"time\":\"$year-$month-$day $hour:$minutes:$seconds\",\"request_time\":$request_time}';
}

// 效果:{"method":"GET","uri":"/c/c1.json","query_string":"-","remote_addr":"172.18.0.1","scheme":"http","content_length":-,"time_local":"10/Mar/2022:10:43:24 +0800","request_id":"ae8075fbd6c29847eada920635be3fb4","bytes_sent":440,"status":200,"time":"2022-03-10 10:43:24","request_time":0.000}

Docker Nginx 容器添加环境变量 TZ: Asia/Shanghai ,解决时间慢8小时的问题。

ngx_http_map_module

http {
    map $http_user_agent $is_postman {
        default 0;
        "~Postman" 1;
  }
}

location / {
    add_header POSTMAN $is_postman always;
}

用已知变量定义新变量。

ngx_http_realip_module

set_real_ip_from  192.168.1.0/24;
set_real_ip_from  192.168.2.1;
set_real_ip_from  2001:0db8::/32;
real_ip_header    X-Forwarded-For;
real_ip_recursive on;

ngx_http_referer_module

location /g {
    valid_referers none server_names *.example.com;
    if ($invalid_referer) {
        return 403;
    }
    return 200 "ok";
}

主要作用是防盗链。

ngx_http_rewrite_module

rewrite_log on;
rewrite ^/g/(.*)$ http://ng.com:81/$1;
// flags:
last 继续匹配剩余 location
break 不再匹配其他 location
redirect 302 发起两次请求
permanent 301

ngx_http_secure_link_module

MacOS 生成MD5 :echo -n '1646907464/h/h1.txt172.18.0.1 secret' | \
    openssl md5 -binary | openssl base64 | tr +/ -_ | tr -d =
Nginx 配置:
location /h {
        secure_link $arg_md5,$arg_expires;
        secure_link_md5 "$secure_link_expires$uri$remote_addr secret";
        if ($secure_link = "") {
            return 403;
        }
        if ($secure_link = "0") {
            return 410;
        }
        return 200 "hhhhhhhhhh";
    }
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,602评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,442评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,878评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,306评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,330评论 5 373
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,071评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,382评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,006评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,512评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,965评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,094评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,732评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,283评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,286评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,512评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,536评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,828评论 2 345

推荐阅读更多精彩内容