soarli

使用nginx实现简易的tomcat listing
让nginx显示文件目录location / { root /data/www/file ...
扫描右侧二维码阅读全文
28
2020/01

使用nginx实现简易的tomcat listing

让nginx显示文件目录

location / {
        root /data/www/file                     //指定实际目录绝对路径;
        autoindex on;                            //开启目录浏览功能;
        autoindex_exact_size off;            //关闭详细文件大小统计,让文件大小显示MB,GB单位,默认为b;
        autoindex_localtime on;              //开启以服务器本地时区显示文件修改日期!
}

只打开部分仅需设置指明location并设置在其内部即可。

nginx支持中文路径

nginx/conf/nginx.conf

server里面增加行:

charset utf8;

windows编码设置

将windows系统-->区域设置 为utf-8编码

参考资料:

https://www.affdalao.com/18.html

https://www.wandouip.com/t5i251911/

https://www.cnblogs.com/bosslv/p/10809872.html

最后修改:2022 年 01 月 07 日 06 : 11 PM

发表评论