Cloudreve has both public and private network disk system, multi-function imitating Baidu network disk source code + free sharing

Introduction

Source code introduction:
free to share, a lot of functions to watch, no test, open source version.

It has multiple functions and multiple upload strategies. The version is the latest V1.0.3. It has a lot of functions. It is equivalent to the main Baidu network disk. Multi-user system. It can be used as private disk, public network disk, and online earn disk. .

The PHP version number is better than 7.0, so that most of the functions can be realized. The memory storage is local by default, and it can also be added to other places. There are strategies in the background for details, and monitoring is needed. Prepare the monitoring station!

Installation requirements
LNMP/AMP With PHP5.6+

curl, fileinfo, gd extension

Composer

Brief installation instructions
1. Install the main program using Composer

#Install the development version

$ composer create-project hfo4/Cloudreve:dev-master

#Waiting for the installation of the dependent library, the installation script will be automatically executed, and the database account information will be entered as prompted

#Enter information as prompted

……

#The following prompt appears to indicate that the installation is complete

Congratulations! Cloudreve has been installed successfully.

Here’s some informatioin about yor Cloudreve:

Homepage: https://pan.cloudreve.org/

Admin Panel: https://pan.cloudreve.org/Admin

Default username: [email protected]

Default password: admin

2. Directory permissions

The runtime directory needs write permission, if you use local storage, the public directory also needs write permission

3.URL rewriting

For the Apache server, the .htaccess under the project directory has been configured with rewrite rules, modify it if necessary. For the Nginx server, the following is a configuration for reference:

location / {

if (!-e $request_filename) {

rewrite ^(.*)$ /index.php?s=/$1 last;

break;

}

}

4. Finish

Backend address: http://your domain name/Admin initial user name: [email protected] initial password: admin

Follow-up operations The
following operations are not required, but it is still recommended that you complete them:

Modify the initial account password

Go to Settings-Basic Settings and change the site URL. If you don’t change it, the program cannot accept callback requests normally.

Add crontab timing task: your domain name/Cron

If you plan to use the local upload strategy and do not want to enable the external link function, please set the public/uploads directory to prohibit external access

To enable the two-step verification function, please execute composer require phpgangsta/googleauthenticator:dev-master composer require endroid/qr-code to install the two-step verification support library

Cloud storage

Fill in simple information to quickly connect to Qiniu, YouPaiyun, Alibaba Cloud OSS, AWS S3, of course, you can also choose to store the files locally.

Multi-user

You can use Cloudreve as a private cloud, and Cloudreve's powerful user system can also be used as a public cloud platform.

Upload strategy

Different user groups can be bound to different upload strategies and quickly switch between multiple upload strategies to make full use of storage resources.

online preview

Support online preview of pictures, videos, audios, Office documents; online editing of text files and Markdown files.

File sharing

Users can create private or public sharing links to quickly share files and directories with friends.

WebDAV support

You can map the network disk to local management, or use other file managers that support the WebDAV protocol to achieve seamless cross-platform.

Responsive layout

All-site responsive layout, mobile terminal can also have a good user experience

File Upload

Support large file segment upload, breakpoint resumable upload, batch upload, drag upload.

Easy to deploy

Using PHP + MySQL architecture, you can successfully deploy your dedicated cloud disk in just 5 minutes.

Download link

http://www.bytepan.com/wh6hQTXQ0hW

image

Insert picture description here

Guess you like

Origin blog.csdn.net/Abbbbb11/article/details/112976079