首页 > 代码库 > nginx参数小说明
nginx参数小说明
proxy_set_header 重新封装包头,和日志格式有关系,定义在location里面
proxy_cache 是否开启nginx缓存,定义在location里面
proxy_cache_vaild 对于http的什么状态码进行缓存以及缓存的时间,定义在location里面
proxy_cache_path 缓存的路径,定义在server外面,location定义在server里面
add_header 添加包头,定义在location里面
例子:
proxy_cache_path /data/nginx/cache levels=1:2:1 keys_zone=one:10m;缓存的文件在哪儿,缓存文件的属性;
proxy_cache_valid 200 302 10m; 对于202 302状态码缓存10分钟。
proxy_set_header Host $host:80;
proxy_set_header X-Forward-For $remote_addr;
add_header X-Cache $upstream_cache_status;
add_header X-Via $server_addr;
add_header X-Cache "$upstream_cache_status from $remote_addr"
本文出自 “常用文档” 博客,请务必保留此出处http://yujianglei.blog.51cto.com/7215578/1560541
nginx参数小说明
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。