Fast and elegant file hosting service.
Go to file
AlphaNecron 6daa54cc87 refactor: renamed from 'draconic' to 'void' 2021-10-01 15:14:44 +07:00
.github/workflows ci: made ci use node fermium 2021-09-25 19:46:28 +07:00
.husky feat: initial 2021-09-16 12:40:46 +07:00
prisma refactor: renamed from 'draconic' to 'void' 2021-10-01 15:14:44 +07:00
public refactor: renamed from 'draconic' to 'void' 2021-10-01 15:14:44 +07:00
scripts feat: initial 2021-09-16 12:40:46 +07:00
server refactor: renamed from 'draconic' to 'void' 2021-10-01 15:14:44 +07:00
src refactor: renamed from 'draconic' to 'void' 2021-10-01 15:14:44 +07:00
twilight feat(components): embed customization (#5) 2021-09-29 21:15:27 +07:00
.eslintrc.js feat(components): text previewing 2021-09-19 11:20:27 +07:00
.gitignore refactor: renamed from 'draconic' to 'void' 2021-10-01 15:14:44 +07:00
LICENSE chore: added LICENSE and readme 2021-09-20 20:38:30 +07:00
config.example.toml feat(components,twilight): url shortener 2021-09-27 18:17:37 +07:00
next-env.d.ts feat: initial 2021-09-16 12:40:46 +07:00
next.config.js feat: initial 2021-09-16 12:40:46 +07:00
package.json refactor: renamed from 'draconic' to 'void' 2021-10-01 15:14:44 +07:00
readme.md refactor: renamed from 'draconic' to 'void' 2021-10-01 15:14:44 +07:00
tsconfig.json refactor: renamed from 'draconic' to 'void' 2021-10-01 15:14:44 +07:00
void-env.d.ts refactor: renamed from 'draconic' to 'void' 2021-10-01 15:14:44 +07:00
yarn.lock feat(components): url in dashboard 2021-09-29 13:07:15 +07:00

readme.md

A self-hosted file hosting service based on Zipline with many features.

Build stable Build stable Stars Version Last commit

Requirements

  • node >= 14
  • PostgreSQL
  • Either yarn or npm

Installation / Deployment

git clone https://github.com/AlphaNecron/Void.git
cd Void
yarn install # or npm install
cp config.example.toml config.toml
nano config.toml # edit the config file
yarn build # or npm build
yarn start # or npm start

Reverse proxy (nginx)

server {
    listen              443 ssl;
    server_name         your.domain;
    ssl_certificate     /path/to/cert;
    ssl_certificate_key /path/to/key;
    ssl_protocols       TLSv1 TLSv1.1 TLSv1.2;
    ssl_ciphers         HIGH:!aNULL:!MD5;
    client_max_body_size 100M;
    location / {
        proxy_pass http://localhost:3000;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
    }
}

Config schema

[core]
secure = false # Whether to use https or not
secret = 'supersecretpassphrase' # The secret used to sign cookie
host = '0.0.0.0' # The host Void should run on
port = 3000 # The port Void should run on
database_url = 'postgres://username:password@localhost:5432/db_name' # PostgreSQL database url

[bot]
enabled = false # Whether to enable the bot or not
prefix = '&' # Bot's prefix
token = '' # Bot's token
admin = [''] # Admin ids
log_channel = '' # The channel where logs are sent, leave blank to disable logging
hostname = 'example.com' # The hostname shortened urls should use in Twilight

[shortener]
allow_vanity = true # Whether to allow vanity urls or not
length = 6 # Slug length
route = '/go' # Route to serve shortened urls

[uploader]
raw_route = '/r' # Route to serve raw contents
length = 6 # Slug length
directory = './uploads' # The directory where images are stored
blacklisted = ['exe'] # Blacklisted extensions

Features

  • Configurable
  • Super fast
  • Built with Next.js & React
  • Token protected uploading
  • Easy to setup
  • Invisible URL
  • Emoji URL
  • Text previewing (with syntax highlighting)
  • Video embed
  • URL shortener
  • Discord bot

Contribution

  • All contribution must be made in dev branch, other contributions in v0 will be rejected.

Todo

  • Docker support
  • Discord integration
  • Album / Bulk upload