1、未配置前访问一个不存在的页面:http://192.168.1.222/abc/def.html,按F12后刷新页面
2、在server{}配置段中新增如下location:
server {
listen 80;
server_name localhost;
location /bbs {
root /vhosts/bbs;
error_page 404 404/404.html;
}
}
3、创建目录,并上传自定义错误页:# mkdir -pv /vhosts/bbs/bbs/404
4、重载服务:# nginx -t # nginx -s reload # ss -tunlp | grep :80
5、访问测试页:
http://192.168.1.222/abc.html
http://192.168.1.222/bbs/abc.html --> 自动跳转至http://192.168.1.222/bbs/404/404.html
按F12后刷新页面:
十、基于fancy实现索引目录(适用于下载站):
1、下载ngx-fancyindex:
# yum -y install git
# cd /tmp
# git clone https://github.com/aperezdc/ngx-fancyindex.git ngx-fancyindex
2、使用Tengine的dso_tool工具编译第三方模块:
# dso_tool -h
# dso_tool --add-module=/tmp/ngx-fancyindex
# ls /usr/local/tengine/modules | grep fancyindex --> ngx_http_fancyindex_module.so
3、在events{}配置段后新增如下代码:
dso {
load ngx_http_fancyindex_module.so;
}
4、在server{}配置段中新增如下location:
server {
listen 80;
server_name localhost;
location /software {
root /download;
fancyindex on; # 启用fancy目录索引功能
fancyindex_exact_size off; # 不显示文件的精确大小,而是四舍五入,单位是KB、MB和GB
fancyindex_localtime on; # 默认为off,显示的是GMT时间,改为on,显示的是服务器时间
}
}
5、创建目录:# mkdir -pv /download/software,并上传软件
6、重载服务:# nginx -t # nginx -s reload # ss -tunlp | grep :80
7、检查ngx_http_fancyindex_module模块是否已经装载:
# nginx -m --> ngx_http_fancyindex_module (shared, 3.1)
8、访问测试页:http://192.168.1.222/software
十一、装载echo模块:
1、下载echo-nginx-module:
# yum -y install git
# cd /tmp
# git clone https://github.com/openresty/echo-nginx-module.git
2、使用Tengine的dso_tool工具编译第三方模块:
# dso_tool --add-module=/tmp/echo-nginx-module
# ls /usr/local/tengine/modules | grep echo --> ngx_http_echo_module.so
3、在events{}配置段后新增如下代码:
dso {
load ngx_http_echo_module.so;
}
4、在server{}配置段中新增如下location:
server {
listen 80;
server_name www.qiuyue.com;
access_log /usr/local/tengine/logs/www.qiuyue.com-access.log main;
location /echo {
default_type "text/plain"; # 不指定default_type,会提示下载文件,而非直接输出在浏览器中
echo "host --> $host"; # 请求主机头字段,否则为服务器名称
echo "server_name --> $server_name"; # 服务器名称
echo "server_addr --> $server_addr"; # 服务器IP地址
echo "remote_addr --> $remote_addr"; # 客户端IP地址
echo "uri --> $uri"; # 不带请求参数的当前URI,$uri不包含主机名
echo "document_uri --> $document_uri"; # 与$uri含义相同
echo "request_uri --> $request_uri"; # 带请求参数的原始URI,不包含主机名
echo "request_filename --> $request_filename"; # 当前请求的文件路径
echo "document_root --> $document_root"; # 当前请求在root指令中指定的值
}
}
5、重载服务:# nginx -t # nginx -s reload # ss -tunlp | grep :80
6、检查ngx_http_echo_module模块是否已经装载:
# nginx -m --> ngx_http_echo_module (shared, 3.1)
7、修改本地Windows 10系统的hosts文件:
C:\Windows\System32\drivers\etc\hosts,末尾新增代码:192.168.1.222 www.qiuyue.com
8、访问测试页:http://www.qiuyue.com/echo
十二、location的匹配顺序(匹配顺序与在配置文件中定义的顺序无关):
1、方便演示效果,装载echo模块
2、在server{}配置段中新增如下location:
server {
listen 80;
server_name www.qiuyue.com;
access_log /usr/local/tengine/logs/www.qiuyue.com-access.log main;
default_type "text/plain";
location = / {
# 精确匹配,匹配优先级最高,匹配成功则不再向下继续匹配
echo 1;
}
location / {
# 通用匹配,匹配优先级最低,匹配所有请求
# 如果有更长的同类型的表达式,则优先匹配更长的表达式
# 如果有正则表达式可以匹配,则优先匹配正则表达式
echo 2;
}
location /documents/ {
# 匹配所有以/documents/开头的请求
# 如果有更长的同类型的表达式,则优先匹配更长的表达式
# 如果有正则表达式可以匹配,则优先匹配正则表达式
echo 3;
}
location ^~ /static/ {
# 匹配所有以/static/开头的请求,匹配优先级第2高,匹配成功则不再向下继续匹配
echo 4;
}
location ~ \.(txt|css)$ {
# 匹配所有以txt和css结尾的请求,区分字符大小写的正则匹配
echo 5;
}
location ~* \.(txt|css)$ {
# 匹配所有以txt和css结尾的请求,不区分字符大小写的正则匹配
echo 6;
}
}
3、重载服务:# nginx -t # nginx -s reload # ss -tunlp | grep :80
4、修改本地Windows 10系统的hosts文件:
C:\Windows\System32\drivers\etc\hosts,末尾新增代码:192.168.1.222 www.qiuyue.com
5、访问测试页:
http://www.qiuyue.com
http://www.qiuyue.com/static/1.js
http://www.qiuyue.com/static/1.txt
http://www.qiuyue.com/documents/1.txt
http://www.qiuyue.com/documents/1.html
http://www.qiuyue.com/notes/1.txt
http://www.qiuyue.com/notes/1.TXT
http://www.qiuyue.com/notes/1.chm
匹配优先级说明:=、^~、~、~*、/path/、/
原文地址:http://blog.51cto.com/qiuyue/2116136