rfc-2549 / sakisafe

simple file upload

Home Page:https://ss.suragu.net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sakisafe (formerly lainsafe)

Simple file upload

Features

  • Written in perl
  • Can be used as pastebin
  • Easy installation (just a simple daemon and use a reverse proxy)
  1. install the dependencies using cpan:
cpan -i Mojolicious::Lite Mojolicious::Routes::Pattern Mojoliciuos::Plugin::RenderFile
  1. Clone the repo and start the daemon:
git clone https://git.suragu.net/sosa/sakisafe
cd sakisafe/http
./sakisafe.pl daemon -m production
  1. Create a 'f' directory in the directory sakisafe will run with mkdir f. Make sure that the user which will run sakisafe.pl can write in that directory.

By default, sakisafe will bind in 127.0.0.1 port 3000. Because that's the default bind Mojolicious uses.

  1. Create a proxy rule in nginx configuration (If you're using another HTTP server, you're on your own.)

server {
	  server_name sakisafe.whatever.tld;
	  listen 443 ssl;

	  # ssl configuration here

	  location / {
			 proxy_set_header    Host            $host;
			 proxy_set_header    X-Real-IP       $remote_addr;
    			 proxy_set_header    X-Forwarded-for $remote_addr;
			 proxy_pass http://127.0.0.1:3000$request_uri;
	  }
}

And restart nginx. Going to sakisafe.whatever.tld should work.

sakisafecli

sakisafecli is a command line interface for sakisafe servers (and other file upload services). It also supports file uploading via scp (ssh).

Features

  • Written in C so is fast.
  • HTTP and SCP support (FTP support is planned)
  • Highly configurable
  • Lightweight
  • If using OpenBSD, it will run pledge() for security reasons.

Installation

Compilation

Clone the repo and run make.

Linux-specific

Use bmake instead of make, and you'll also need these deps:

  • libcurl-devel
  • libconfig-dev
  • libnghttp2-dev

Repositories

Contributing

Just create a pull request in GitHub or send a diff file.

Donate

Thanks!

Bitcoin: bc1qghl6f27dpgktynpvkrxte2s3gm9pcv8vlwuzum

Monero: 47QTumjtqJabbo1s9pLDdXeJarLVLfs1AaEcbi1xrEiV852mqcbe5AHLNXTk7tH9MscxcxQDfJQnvH5LpxvfgwSJQZ3zbS6

About

simple file upload

https://ss.suragu.net

License:Other


Languages

Language:C 53.6%Language:Perl 28.5%Language:Roff 12.1%Language:CSS 2.4%Language:Makefile 2.1%Language:Dockerfile 1.4%