This WebUI for Rclone is a intuitive and easy way to access information about your Rclone transfers.
Rclone is a command line program to manage files on cloud storage. It is a feature rich alternative to cloud vendors' web storage interfaces. Over 40 cloud storage products support rclone including S3 object stores, business & consumer file storage services, as well as standard transfer protocols. You can take a look at the project here
- General stats from current rcd session
- View active running jobs and their transfers
- Browse the history of succesful transferred files
- View list of remotes
- View list of mounted remotes
- Darkmode (autodetect)
- View configured settings
- System info
Currently the WebUI only acts as a instrument to view active jobs and a history of completed transfers.
In this version I plan to add configurable global settings for rclone. Apart from viewing the settings, which is currently possible, you will be able to set most of the global flags using the WebUI.
In the release of version 2.0 it will be possible to browse remotes. It will even be possible to browse two remotes or local folders at the same time! Allowing you to copy or move files from one to the other.
In this release it will be possible to upload files to a remote from your web browser.
The endgoal is to support syncing files automatically on a schedule using cronjobs on linux. This last feature (for now) will require a secondary API and cannot run with Rclone alone, therefor this feature is most pushed back.
Start Rclone remote control server
rclone rcd --rc-web-gui --rc-user <YOURUSER> --rc-pass <YOURPASS> --rc-web-fetch-url=https://api.github.com/repos/controlol/rclone-webui/releases/latest
If you are on a headless machine you can add the argument --rc-web-gui-no-open-browser
so Rclone won't try to open a browser.
This project is also used in gdrive-rclone-docker#webui
Alternatively you can manually download the WebUI locally and specify the location of the files.
Download package from here and place the contents in a folder and remember it's location, I like to use /webui because I will be running this in a docker container.
curl https://github.com/controlol/rclone-webui/releases/download/v1.0/rclone-webui-release-V1.0.zip > rclone-webui-release-V1.0.zip
unzip rclone-webui-release-V1.0.zip
cp build /webui
rclone rcd --rc-web-gui --rc-user <YOURUSER> --rc-pass <YOURPASS> /webui
You can see the last argument is the folder where you placed the WebUI earlier. This is the same as specifying --rc-files=/webui
. More documentation on rcd is available here.
To build the site you are expected to have npm and nodejs installed and have a active internet connection.
Get the source files
git clone https://github.com/controlol/rclone-webui
cd rclone-webui
Install dependencies
npm ci
Build the project
npm run build
The WebUI should have been build in the build folder. Copy the files to a location you can easily access or use the build directory as the source for your rclone rcd.