1
0
Fork 0
 
 
 
 
 
Go to file
Ambrose Chua c91e94d0a2 UI improvements 2021-05-08 01:54:37 +08:00
.github/ISSUE_TEMPLATE Update issue templates 2019-07-12 23:20:44 +08:00
assets UI improvements 2021-05-08 01:54:37 +08:00
views UI improvements 2021-05-08 01:54:37 +08:00
.dockerignore Add node_modules to .dockerignore 2021-05-07 23:16:00 +08:00
.drone.yml Update .drone.yml 2018-12-08 22:42:46 +08:00
.gitignore Update to bootstrap 4.0.0 2018-02-15 00:31:29 +08:00
Dockerfile Fix #6 2021-05-07 22:42:20 +08:00
Dockerfile.env Fix #6 2021-05-07 22:42:20 +08:00
LICENSE Create LICENSE 2018-09-26 22:36:12 +08:00
README.md UI improvements 2021-05-08 01:54:37 +08:00
index.js UI improvements 2021-05-08 01:54:37 +08:00
package-lock.json Upgrade to Bootstrap 5, and improve UI 2021-05-07 20:57:15 +08:00
package.json Upgrade to Bootstrap 5, and improve UI 2021-05-07 20:57:15 +08:00

README.md

file-manager

A basic node.js file manager.

Features

  • Simple authentication
  • Directory browsing
    • Filesize
    • Permissions
    • Owner
  • Folder creation
  • File uploads
    • Bulk file uploads
    • Large file uploads (sharded)
  • File/folder renaming
  • Bulk file/folder selection
    • Delete
      • Recursive directory delete
    • Move
    • Copy
    • Download archive
    • Change permissions
  • Remote commands

Screenshots

These screenshots are not up-to-date.

Usage

docker run --rm -it -v $PWD:/data -p 8080:8080 serverwentdown/file-manager

OR

git clone https://github.com/serverwentdown/file-manager.git ~/path/to/file-manager
node ~/path/to/file-manager/index.js
# or
npm i -g https://github.com/serverwentdown/file-manager.git
file-manager

Options

The following environmental variables can be used to configure file-manager.

SESSION_KEY=

Express session key, generate something random.

SHELL=

Enable the shell feature, which allows users to start a login shell (when set to login) or the binary specified by this option (example: /bin/bash). Be careful when enabling this feature as anyone with access to this portal can execute any command on your machine.

CMD=

Set to something other than "false" to enable running single commands in the default shell, usually /bin/sh. Be careful when enabling this feature as anyone with access to this portal can execute any command on your machine.

PORT=

Listen on $PORT. Default: 8080

KEY=

Setting this variable enables authentication using TOTP (RFC6238). $KEY is a base32 encoded shared secret. This key is only a weak means of protection as it is succeptable to brute-force. You can generate one from here or manually.