Nginx配置
<h4>Nginx配置</h4>
<p>NginxWebUI : <a href="https://gitee.com/cym1102/nginxWebUI">https://gitee.com/cym1102/nginxWebUI</a></p>
<p><strong>浏览目录配置</strong></p>
<pre><code>location /download
{
root /www/download; #指定目录所在路径
autoindex on; #开启目录浏览
autoindex_format html; #以html风格将目录展示在浏览器中
autoindex_exact_size off; #切换为 off 后,以可读的方式显示文件大小,单位为 KB、MB 或者 GB
autoindex_localtime on; #以服务器的文件时间作为显示的时间
charset utf-8,gbk; #展示中文文件名,解决中文乱码
}</code></pre>