通过nginx映射指定目录文件给外部访问

开发在排查线上问题时需要要查看服务器的日志文件。但是我们把服务器的访问权限下放给开发也不现实。对此我们可以通过ngxin配置,实现通过浏览器查看日志,浏览日志文件。

先给出完整配置


    server {
    listen   80;        
        location /logs/fanlai {
            autoindex on;
            root /root/;
        }

        location ^/logs/fanlai~*\.(log|txt)$ {
                add_header Content-Type text/plain;
                root /root/;
        }
   }

其中listen 80;是nignx最常用的配置,表示代理80端口,将location里面配置的内容反向代理到80端口供外部访问。

开启浏览文件目录索引功能

    location /logs/fanlai {
            autoindex on;
            root /root/;
        }

该配置表示,自动拦截以/logs/fanlai开头的请求,如果没有其他location的拦截配置能够符合该url,则命中该location。
autoindex on表示开启文件索引,这样我们在浏览器输入文件目录url时,可以显示文件索引目录。最终访问的资源映射到了/root/目录。

比如访问urlhttp://192.168.2.251/logs/fanlai/fanlaipack/时,最终显示的是文件目录/root/logs/fanlai/fanlaipack,页面显示如下。
通过nginx映射指定目录文件给外部访问_第1张图片

开启日志文件访问功能

        location ^/logs/fanlai~*\.(log|txt)$ {
                add_header Content-Type text/plain;
                root /root/;
        }

/logs/fanlai开头.log或者.txt的文件将被拦截处理。
add_header Content-Type text/plain表示响应头,告诉浏览器直接在页面显示文件内容。如果不配置,那么点击文件链接时会自动下载。

比如我的服务器环境如下:
日志所在目录:root/logs/fanlai
比如希望访问的日志文件:/root/logs/fanlai/fanlaipack/info.log
访问url:http://192.168.2.251/logs/fanlai/fanlaipack/info.log

通过nginx映射指定目录文件给外部访问_第2张图片

你可能感兴趣的:(linux)