Nimbus alternatives and similar software solutions
Based on the "Single-click/drag-n-drop upload" category.
Alternatively, view Nimbus alternatives based on common mentions on social networks and blogs.
-
OnionShare
Securely and anonymously share files, host websites, and chat with friends using the Tor network -
droppy
DISCONTINUED. droppy is a self-hosted cloud server with an interface similar to desktop file managers and has capabilites to edit files on-the-fly as well as view and playback media directly in the browser. -
ProjectSend
ProjectSend is a free, open source software that lets you share files with your clients, focused on ease of use and privacy. It supports clients groups, system users roles, statistics, multiple languages, detailed logs... and much more! -
linx
DISCONTINUED. Self-hosted file/code/media sharing website. ~~~~~~~~~~~~~~~~~~~ Demo: https://demo.linx-server.net/ [Moved to: https://github.com/linx-server/linx-server] -
Zipline
A ShareX/file upload server that is easy to use, packed with features, and with an easy setup! -
PictShare
:camera: PictShare is an open source image, mp4, pastebin hosting service with a simple resizing and upload API that you can host yourself. :rice_scene: -
Uguu
Uguu is a simple lightweight temporary file host with support for drop, paste, click and API uploading. -
img.bi
DISCONTINUED. img.bi is a secure image hosting. Images are encrypted using AES-256 with random key in browser before upload. -
lutim
Let's Upload That Image ! Read-only mirror of https://framagit.org/fiat-tux/hat-softwares/lutim -
fibridge
Proxy for turning web browsers into web servers. Load a 100GB file in your browser and stream it over the public web with HTTP byte range requests. -
uPste
DISCONTINUED. A private file hosting application with an emphasis on serving technology communities. -
FireShare
Real-time file sharing system. Using NodeJS, ReactJS, SocketIO, MongoDB. Chai, WebdriverIO for testing. -
Pste
DISCONTINUED. Just a simple file hosting application inspired by the likes of pomf.se and teknik.io. -
Jyraphe
DISCONTINUED. Jyraphe is a web application of file repository, easy to install and easy to use. -
Jirafeau
Jirafeau is a web site permitting to upload a file in a simple way and give an unique link to it. -
Share
Simple yet advanced uploader. Allows users to upload files,images, and text with moderation tools for admins. Can be used for friends and family or just for you. Built with integration, like ShareX but more uploaders will be officially supported. -
Coquelicot
Coquelicot is a “one-click” file sharing web application with a focus on protecting users’ privacy.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Nimbus or a related project?
Popular Comparisons
README
Nimbus
Nimbus is a private file sharer and URL shortener. Heavily inspired by Cloudapp, Nimbus is a free and open source solution to file sharing and URL shortening that you can host yourself and fully control.
Nimbus consists of several components:
- A website that displays sharing pages for generated links and redirects shortened URLs to their targets
- A website to manage shared items
- An API to manipulate shared items
- A Mac OS X menubar app to upload files and shorten links
The menubar app is only compatible with OS X 10.9 and up since it is written in Swift. The files are stored in Amazon S3, so you must have an AWS account.
Screenshots
Features
- Share pages that show file previews or redirect to the shortened link
- Image file previews
- Text file previews with automatic syntax highlighting if applicable
- Screenshots are automatically uploaded and the share link is copied to the clipboard
- Drag a file or text to the menubar icon to upload it and copy the share link to the clipboard
- Drag a URL to the menubar icon to create a shortened link and copy it to the clipboard
- Keep track of view counts for files and shortened URLS
Setup
To set up the Django app, perform the following steps on your server (assumes pip, virtualenv, and MySQL are already installed)
- Create a virtualenv and activate it
- Clone the repository (from here on, it is assumed that the respository's location is
/usr/local/www/Nimbus
) - While in the repository root, install the Python requirements by running
pip install -r requirements/production.txt
- Create a database and grant a user full access to it.
- Follow the instructions in
nimbus/settings/secret.sample.py
to create a secrets file with your MySQL and Amazon S3 credentials - Set up the environment for the Django app by running
export PRODUCTION=TRUE
- Set up the database and create your user by running
./manage.py syncdb
- Start a Django shell (
./manage.py shell
) and run the following commands, replacingexample.com
with your domain name
from django.contrib.sites.models import Site
Site.objects.update(name="example.com", domain="example.com")
- Collect static files by running
yes yes | ./manage.py collectstatic
Serving Nimbus
Make sure you have a domain name configured with the following records:
@ IN A <IP address of your server>
api CNAME @
account CNAME @
files CNAME files.<your domain name>.s3.amazonaws.com.
Also make sure you have an Amazon S3 bucket called files.<your domain name>
The recommended setup for serving Nimbus is Gunicorn managed by Supervisor with nginx as a reverse proxy. Configuration requirements are as follows.
- Nginx must be listening on the subdomains
account
andapi
of your domain as well as the root domain. Forward all of this traffic to Gunicorn - the Django app handles the subdomain routing. - The attribute
client_max_body_size
must be set in the nginx config to a sufficiently large value to allow uploads of big files. - Static file requests (
/static/
) should be aliased tonimbus/collected_static
in the repository root - Supervisor must call the version of gunicorn in your virtualenv
Example Supervisor Configuration
[program:nimbus]
directory = /usr/local/www/Nimbus
user = nobody
command = /usr/local/virtualenvs/Nimbus/bin/gunicorn nimbus.wsgi:application --user=nobody --workers=1 --bind=127.0.0.1:8080
environment = PRODUCTION=TRUE
stdout_logfile = /var/log/sites/nimbus.gunicorn.log
stderr_logfile = /var/log/sites/nimbus.gunicorn.log
autostart = true
autorestart = true
Example Nginx Configuration
server {
listen 80;
server_name example.com account.example.com api.example.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name example.com account.example.com api.example.com;
ssl on;
ssl_certificate /usr/local/certs/example.com.crt;
ssl_certificate_key /usr/local/certs/example.com.key;
client_max_body_size 1024M;
access_log /var/log/sites/nimbus.access.log;
error_log /var/log/sites/nimbus.error.log;
location /favicon.ico {
alias /usr/local/www/Nimbus/nimbus/static/img/favicon.ico;
}
location /static/ {
alias /usr/local/www/Nimbus/nimbus/collected_static/;
}
location / {
rewrite ^/((?!(api-auth|admin))(.*))/$ /$1 permanent;
proxy_pass http://127.0.0.1:8080;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
API Reference
API documentation can be found [here](api_docs.md).
Contact
Ethan Lowman