摘要:
##1. NGINX的目录索引功能 autoindex on | off; Default: autoindex off; Context: http, server, location 启用或禁用目录列表功能,on代表启用。 当访问一个目录时(以/结尾),配置的index的默认页面不存在,会将请求 阅读全文
摘要:
#1. 长连接配置 keepalive_timeout; 定义客户端保持连接超时时长,0表示禁止长连接,默认为65s,建议使用15s即可。 在ngx_http_upstream_module中也有此项设置,是定义反向代理转发给后端服务器时的超时时间. 支持环境:http,server,locatio 阅读全文
摘要:
#1. 自定义错误页面 error_page code ... [=[response]] uri; 定义错误页,以指定的响应状态码进行响应,此指令由ngx_http_index_module模块提供 支持环境:http, server, location, if in location #1.修改 阅读全文
摘要:
##1. location的详细用法 location [ = | ~ | * | ^ ] uri 用于实现从uri到文件系统的路径映射;ngnix会根据用户请求的URI来检查定义的所有location,并找出一个最佳匹配,而后应用其配置。 uri前符号说明 = 对URI做精确匹配; ^~对URI的 阅读全文
摘要:
#root和alias的区别 root:指定站点家目录,给定的路径对应于location中的/uri 左侧的/,文件的绝对路径为root+location。 支持环境:http, server, location, if in location #1.nginx的配置文件如下: [root@ngin 阅读全文
摘要:
1 http基础配置参数详解 [root@nginx01 ~]# cat /etc/nginx/nginx.conf ...... http { include /etc/nginx/mime.types; default_type application/octet-stream; log_for 阅读全文