29447945 发表于 2020-8-31 19:52

【树莓派4B测评】+搭建文件服务器

<div class='showpostmsg'> 本帖最后由 29447945 于 2020-8-31 19:55 编辑

<p>我们要使用连接下载服务器的文件,这里使用openresty搭建一个文件服务器;</p>

<p>首先我们需要下载openresty,官网下载:<a href="https://openresty.org/cn/download.html">https://openresty.org/cn/download.html</a></p>

<p></p>

<p>下载本地后,解压文件</p>

<p>tar zvxf openresty-1.17.8.2.tar.gz&nbsp;</p>

<p>解压缩后,到解压目录中安装;</p>

<p>sudo&nbsp; ./configure<br />
sudo make<br />
sudo make install</p>

<p>然后配置文件</p>

<p>sudo vim /usr/local/openresty/nginx/conf/nginx.conf&nbsp;</p>

<p>在http -&gt; server 字段下添加</p>

<p>location /files {&nbsp;<br />
&nbsp; &nbsp; autoindex on; # 开启索引功能<br />
&nbsp; &nbsp; autoindex_exact_size off; # 关闭计算文件确切大小(单位bytes),只显示大概大小(单位kb、mb、gb) &nbsp;<br />
&nbsp; &nbsp; autoindex_localtime on; # 显示本机时间而非 GMT 时间 &nbsp;<br />
&nbsp; &nbsp; alias /var/files; &nbsp; # 显示的根索引目录<br />
}</p>

<p>如下图</p>

<p></p>

<p>然后更改共享目录的权限&nbsp;/home/pi/Public&nbsp;</p>

<p>然后运行</p>

<p>sudo /usr/local/openresty/bin/openresty&nbsp;</p>

<p>如果更改了配置文件,则重新运行一下</p>

<p>sudo /usr/local/openresty/bin/openresty&nbsp; -s relaod</p>

<p>运行后,使用浏览器测试一下;</p>

<p></p>

<p>浏览器可以访问我的共享目录中的文件了。</p>
</div><script>                                        var loginstr = '<div class="locked">查看本帖全部内容,请<a href="javascript:;"   style="color:#e60000" class="loginf">登录</a>或者<a href="https://bbs.eeworld.com.cn/member.php?mod=register_eeworld.php&action=wechat" style="color:#e60000" target="_blank">注册</a></div>';
                                       
                                        if(parseInt(discuz_uid)==0){
                                                                                                (function($){
                                                        var postHeight = getTextHeight(400);
                                                        $(".showpostmsg").html($(".showpostmsg").html());
                                                        $(".showpostmsg").after(loginstr);
                                                        $(".showpostmsg").css({height:postHeight,overflow:"hidden"});
                                                })(jQuery);
                                        }                </script><script type="text/javascript">(function(d,c){var a=d.createElement("script"),m=d.getElementsByTagName("script"),eewurl="//counter.eeworld.com.cn/pv/count/";a.src=eewurl+c;m.parentNode.insertBefore(a,m)})(document,523)</script>
页: [1]
查看完整版本: 【树莓派4B测评】+搭建文件服务器