NextCloud

  • nextcloud安装后发现功能的确很多很强,但是用树莓派跑起来体验不是很顺畅,所需的功能只不过是文件管理功能而已.

filemanager

  • filemanager是个不错的选择,可是不喜欢默认的界面,也不会自己配.

KodExplorer

  • 可道云免费版有限制,可是界面比filemanager漂亮,忍了.

安装可道云

  • 下载,解压,修改目录
  • 建立共享文件夹,并修改权限
  • 建立PHP pool
  • 建立nginx服务器
  • 扩展选项:
location / {
try_files $uri $uri/ =404;
}
location ~ \.php {
include snippets/fastcgi-php.conf;

fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
} 

标签: none

添加新评论