mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 20:39:18 +08:00
docs: add docs about GUI
This commit is contained in:
parent
ed85092edb
commit
a3faf98aa0
|
@ -18,6 +18,7 @@ docs = [
|
||||||
"docs.md",
|
"docs.md",
|
||||||
"remote_setup.md",
|
"remote_setup.md",
|
||||||
"filtering.md",
|
"filtering.md",
|
||||||
|
"gui.md",
|
||||||
"rc.md",
|
"rc.md",
|
||||||
"overview.md",
|
"overview.md",
|
||||||
"flags.md",
|
"flags.md",
|
||||||
|
|
|
@ -69,6 +69,7 @@ Features
|
||||||
* Optional FUSE mount ([rclone mount](/commands/rclone_mount/))
|
* Optional FUSE mount ([rclone mount](/commands/rclone_mount/))
|
||||||
* Multi-threaded downloads to local disk
|
* Multi-threaded downloads to local disk
|
||||||
* Can [serve](/commands/rclone_serve/) local or remote files over [HTTP](/commands/rclone_serve_http/)/[WebDav](/commands/rclone_serve_webdav/)/[FTP](/commands/rclone_serve_ftp/)/[SFTP](/commands/rclone_serve_sftp/)/[dlna](/commands/rclone_serve_dlna/)
|
* Can [serve](/commands/rclone_serve/) local or remote files over [HTTP](/commands/rclone_serve_http/)/[WebDav](/commands/rclone_serve_webdav/)/[FTP](/commands/rclone_serve_ftp/)/[SFTP](/commands/rclone_serve_sftp/)/[dlna](/commands/rclone_serve_dlna/)
|
||||||
|
* Experimental [Web based GUI](/gui/)
|
||||||
|
|
||||||
Links
|
Links
|
||||||
|
|
||||||
|
|
106
docs/content/gui.md
Normal file
106
docs/content/gui.md
Normal file
|
@ -0,0 +1,106 @@
|
||||||
|
---
|
||||||
|
title: "GUI"
|
||||||
|
description: "Web based Graphical User Interface"
|
||||||
|
date: "2019-08-25"
|
||||||
|
---
|
||||||
|
|
||||||
|
# GUI (Experimental)
|
||||||
|
|
||||||
|
Rclone can serve a web based GUI (graphical user interface). This is
|
||||||
|
somewhat experimental at the moment so things may be subject to
|
||||||
|
change.
|
||||||
|
|
||||||
|
Run this command in a terminal and rclone will download and then
|
||||||
|
display the GUI in a web browser.
|
||||||
|
|
||||||
|
```
|
||||||
|
rclone rcd --rc-web-gui
|
||||||
|
```
|
||||||
|
|
||||||
|
This will produce logs like this and rclone needs to continue to run to serve the GUI:
|
||||||
|
|
||||||
|
```
|
||||||
|
2019/08/25 11:40:14 NOTICE: A new release for gui is present at https://github.com/rclone/rclone-webui-react/releases/download/v0.0.6/currentbuild.zip
|
||||||
|
2019/08/25 11:40:14 NOTICE: Downloading webgui binary. Please wait. [Size: 3813937, Path : /home/USER/.cache/rclone/webgui/v0.0.6.zip]
|
||||||
|
2019/08/25 11:40:16 NOTICE: Unzipping
|
||||||
|
2019/08/25 11:40:16 NOTICE: Serving remote control on http://127.0.0.1:5572/
|
||||||
|
```
|
||||||
|
|
||||||
|
This assumes you are running rclone locally on your machine. It is
|
||||||
|
possible to separate the rclone and the GUI - see below for details.
|
||||||
|
|
||||||
|
If you wish to update to the latest API version then you can add
|
||||||
|
`--rc-web-gui-update` to the command line.
|
||||||
|
|
||||||
|
## Using the GUI
|
||||||
|
|
||||||
|
Once the GUI opens, you will be looking at the dashboard which has an overall overview.
|
||||||
|
|
||||||
|
On the left hand side you will see a series of view buttons you can click on:
|
||||||
|
|
||||||
|
- Dashboard - main overview
|
||||||
|
- Configs - examine and create new configurations
|
||||||
|
- Explorer - view, download and upload files to the cloud storage systems
|
||||||
|
- Backend - view or alter the backend config
|
||||||
|
- Log out
|
||||||
|
|
||||||
|
(More docs and walkthrough video to come!)
|
||||||
|
|
||||||
|
## How it works
|
||||||
|
|
||||||
|
When you run the `rclone rcd --rc-web-gui` this is what happens
|
||||||
|
|
||||||
|
- Rclone starts but only runs the remote control API ("rc").
|
||||||
|
- The API is bound to localhost with an auto generated username and password.
|
||||||
|
- If the API bundle is missing then rclone will download it.
|
||||||
|
- rclone will start serving the files from the API bundle over the same port as the API
|
||||||
|
- rclone will open the browser with a `login_token` so it can log straight in.
|
||||||
|
|
||||||
|
## Advanced use
|
||||||
|
|
||||||
|
The `rclone rcd` may use any of the [flags documented on the rc page](https://rclone.org/rc/#supported-parameters).
|
||||||
|
|
||||||
|
The flag `--rc-web-gui` is shorthand for
|
||||||
|
|
||||||
|
- Download the web GUI if necessary
|
||||||
|
- Check we are using some authentication
|
||||||
|
- `--rc-user gui`
|
||||||
|
- `--rc-pass <random password>`
|
||||||
|
- `--rc-serve`
|
||||||
|
|
||||||
|
These flags can be overidden as desired.
|
||||||
|
|
||||||
|
See also the [rclone rcd documentation](https://rclone.org/commands/rclone_rcd/).
|
||||||
|
|
||||||
|
### Example: Running a public GUI
|
||||||
|
|
||||||
|
For example the GUI could be served on a public port over SSL using an htpasswd file using the following flags:
|
||||||
|
|
||||||
|
- `--rc-web-gui`
|
||||||
|
- `--rc-addr :443`
|
||||||
|
- `--rc-htpasswd /path/to/htpasswd`
|
||||||
|
- `--rc-cert /path/to/ssl.crt`
|
||||||
|
- `--rc-key /path/to/ssl.key`
|
||||||
|
|
||||||
|
### Example: Running a GUI behind a proxy
|
||||||
|
|
||||||
|
If you want to run the GUI behind a proxy at `/rclone` you could use these flags:
|
||||||
|
|
||||||
|
- `--rc-web-gui`
|
||||||
|
- `--rc-baseurl rclone`
|
||||||
|
- `--rc-htpasswd /path/to/htpasswd`
|
||||||
|
|
||||||
|
Or instead of htpassword if you just want a single user and password:
|
||||||
|
|
||||||
|
- `--rc-user me`
|
||||||
|
- `--rc-pass mypassword`
|
||||||
|
|
||||||
|
## Project
|
||||||
|
|
||||||
|
The GUI is being developed in the: [rclone/rclone-webui-react respository](https://github.com/rclone/rclone-webui-react).
|
||||||
|
|
||||||
|
Bug reports and contributions very welcome welcome :-)
|
||||||
|
|
||||||
|
If you have questions then please ask them on the [rclone forum](https://forum.rclone.org/).
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
<li><a href="/install/"><i class="fa fa-book"></i> Installation</a></li>
|
<li><a href="/install/"><i class="fa fa-book"></i> Installation</a></li>
|
||||||
<li><a href="/docs/"><i class="fa fa-book"></i> Usage</a></li>
|
<li><a href="/docs/"><i class="fa fa-book"></i> Usage</a></li>
|
||||||
<li><a href="/filtering/"><i class="fa fa-book"></i> Filtering</a></li>
|
<li><a href="/filtering/"><i class="fa fa-book"></i> Filtering</a></li>
|
||||||
|
<li><a href="/gui/"><i class="fa fa-book"></i> GUI</a></li>
|
||||||
<li><a href="/rc/"><i class="fa fa-book"></i> Remote Control</a></li>
|
<li><a href="/rc/"><i class="fa fa-book"></i> Remote Control</a></li>
|
||||||
<li><a href="/changelog/"><i class="fa fa-book"></i> Changelog</a></li>
|
<li><a href="/changelog/"><i class="fa fa-book"></i> Changelog</a></li>
|
||||||
<li><a href="/bugs/"><i class="fa fa-book"></i> Bugs</a></li>
|
<li><a href="/bugs/"><i class="fa fa-book"></i> Bugs</a></li>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user