通过http和浏览器访问Samba共享文件夹
Posted simmy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过http和浏览器访问Samba共享文件夹相关的知识,希望对你有一定的参考价值。
环境:Ubuntu Server 18.04
sudo apt install nginx-full
sudo vim /etc/nginx/sites-available/default
在location处添加
location / {
try_files $uri $uri/ =404;
alias /shareDoc/; # directory to list
autoindex on;
sudo systemctl restart nginx
然后即可通过hostname或者ip访问
以上是关于通过http和浏览器访问Samba共享文件夹的主要内容,如果未能解决你的问题,请参考以下文章