码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS 7.4 Tengine安装配置详解(三)

时间:2018-05-14 15:45:52      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:location、echo、fancy

九、根据HTTP响应状态码自定义错误页:

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、使用Tenginedso_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;    # 不显示文件的精确大小,而是四舍五入,单位是KBMBGB

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、使用Tenginedso_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)$ {

# 匹配所有以txtcss结尾的请求,区分字符大小写的正则匹配

echo 5;

}

 

location ~* \.(txt|css)$ {

# 匹配所有以txtcss结尾的请求,不区分字符大小写的正则匹配

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//


CentOS 7.4 Tengine安装配置详解(三)

标签:location、echo、fancy

原文地址:http://blog.51cto.com/qiuyue/2116136

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!