0%

几种开源网盘整理

记录下自己使用过的开源网盘: KODExplorer,NextCloud

KODExplorer

芒果云是一个开源网盘,支持在线编辑和预览文件, 付费版功能更多, 该网盘不需要数据库支持
http://kodcloud.com/index.html

安装

1
2
3
4
5
6
7
8
9
10
11
yum install -y http://rpms.remirepo.net/enterprise/remi-release-7.rpm
yum install -y php72 php72-php-fpm nginx php72-php-mbstring php72-php-gd httpd-tools
systemctl enable nginx
systemctl enable php72-php-fpm
systemctl start nginx
systemctl start php72-php-fpm
## 下载源码
git clone https://github.com/kalcaddle/KODExplorer.git
chmod -Rf 777 ./KODExplorer/*
## 这个一步一定要, 否则会提示权限不足
chmod 777 ./KODExplorer

NGINX 配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
server {

## 其他配置...

location / {
charset utf8;
root /data/KODExplorer;
index index.php;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
}
location ~ \.php$ {
root /data/KODExplorer;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_connect_timeout 75;
fastcgi_read_timeout 1200;
fastcgi_send_timeout 1200;
include fastcgi_params;
}
}

server {

## 其他配置...

location /filemanager/ {
root /data/web;
index index.php;
location ~\.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_connect_timeout 75;
fastcgi_read_timeout 1200;
fastcgi_send_timeout 1200;
include fastcgi_params;
}
}
}

不要折腾alias了,太麻烦了,直接root就可以了
root要求源码目录地址是/data/web/filemanager/

NextCloud

NextCloud是国外的一款开源网盘,相较于芒果云,个人感觉是客户端比较完善。但是,要求服务器偏高,无奈放弃。

依赖

  • PHP5.6安装方式
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    $rpm -qa | grep php
    php71w-pdo-7.1.10-1.w6.i386
    php71w-opcache-7.1.10-1.w6.i386
    mod_php71w-7.1.10-1.w6.i386
    php71w-mysql-7.1.10-1.w6.i386
    php71w-gd-7.1.10-1.w6.i386
    php71w-common-7.1.10-1.w6.i386
    php71w-fpm-7.1.10-1.w6.i386
    php71w-xml-7.1.10-1.w6.i386
    php71w-cli-7.1.10-1.w6.i386
    php71w-mbstring-7.1.10-1.w6.i386
  • MYSQL(可选)

NGINX 配置

nextcloud配置备份view raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
upstream php-handler {
server 127.0.0.1:9000;
#server unix:/var/run/php5-fpm.sock;
}

server {
listen 80;
server_name nextcloud.web.mingilin.com;

# Add headers to serve security related headers
# Before enabling Strict-Transport-Security headers please read into this topic first.
add_header Strict-Transport-Security "max-age=15552000; includeSubDomains";
add_header X-Content-Type-Options nosniff;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Robots-Tag none;
add_header X-Download-Options noopen;
add_header X-Permitted-Cross-Domain-Policies none;

# Path to the root of your installation
root /data/nextcloud/nextcloud;

location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}

# The following 2 rules are only needed for the user_webfinger app.
# Uncomment it if you're planning to use this app.
#rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
#rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json last;

location = /.well-known/carddav {
return 301 $scheme://$host/remote.php/dav;
}
location = /.well-known/caldav {
return 301 $scheme://$host/remote.php/dav;
}

location /.well-known/acme-challenge { }

# set max upload size
client_max_body_size 512M;
fastcgi_buffers 64 4K;

# Disable gzip to avoid the removal of the ETag header
gzip off;

# Uncomment if your server is build with the ngx_pagespeed module
# This module is currently not supported.
#pagespeed off;

error_page 403 /core/templates/403.php;
error_page 404 /core/templates/404.php;

location / {
rewrite ^ /index.php$uri;
}

location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)/ {
return 404;
}
location ~ ^/(?:\.|autotest|occ|issue|indie|db_|console) {
return 404;
}

location ~ ^/(?:index|remote|public|cron|core/ajax/update|status|ocs/v[12]|updater/.+|ocs-provider/.+|core/templates/40[34])\.php(?:$|/) {
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param HTTPS on;
fastcgi_param modHeadersAvailable true; #Avoid sending the security headers twice
fastcgi_param front_controller_active true;
fastcgi_pass php-handler;
fastcgi_intercept_errors on;
fastcgi_request_buffering off;
}

location ~ ^/(?:updater|ocs-provider)(?:$|/) {
try_files $uri $uri/ =404;
index index.php;
}

# Adding the cache control header for js and css files
# Make sure it is BELOW the PHP block
location ~* \.(?:css|js)$ {
try_files $uri /index.php$uri$is_args$args;
add_header Cache-Control "public, max-age=7200";
# Add headers to serve security related headers (It is intended to have those duplicated to the ones above)
# Before enabling Strict-Transport-Security headers please read into this topic first.
#add_header Strict-Transport-Security "max-age=15552000; includeSubDomains";
add_header X-Content-Type-Options nosniff;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Robots-Tag none;
add_header X-Download-Options noopen;
add_header X-Permitted-Cross-Domain-Policies none;
# Optional: Don't log access to assets
access_log off;
}

location ~* \.(?:svg|gif|png|html|ttf|woff|ico|jpg|jpeg)$ {
try_files $uri /index.php$uri$is_args$args;
# Optional: Don't log access to other assets
access_log off;
}

listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/mingilin.com/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/mingilin.com/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot


# Redirect non-https traffic to https
if ($scheme != "https") {
return 301 https://$host$request_uri;
} # managed by Certbot



}

数据导入

  • 安装davfs
    需要yum源rpmforge, 然后yum install davfs2
  • 挂在到本地
    mount -t davfs https://nextcloud.web.mingilin.com/remote.php/webdav/ /root/ttt -o username=你的用户名
  • /root/ttt目录下增删文件

已知问题

nextcloud使用遇到的问题:

  1. 服务器要求偏高,在512M的机器上玩不转,负载高的吓人
  2. 要求数据库支持
  3. 手动修改用户文件不生效,这个KODExplorer就很好用了

因为第一点,无奈只能放弃使用,虽然客户端确实很完善,有条件的同学可以试下。