Vai al file
Arthur POULET 0ad9d4ead6
continuous-integration/drone/push Build is passing Dettagli
Bump v0.5.9
2023-09-09 22:05:57 +02:00
public Improve file dropzone 2022-11-23 23:56:05 +01:00
spec Add auto-detect host and port of the server (by request) 2022-11-23 21:28:42 +01:00
src Make the layout more responsive 2023-09-09 22:05:57 +02:00
.drone.yml Fix drone CI 2022-11-23 21:29:23 +01:00
.gitignore Update to crystal v0.20, big file work 2022-11-23 21:28:22 +01:00
Dockerfile Fix Alpine package for PCRE 2023-09-09 22:05:56 +02:00
LICENSE Change LICENSE to GPL-3.0 2022-11-23 21:28:29 +01:00
Makefile Fix make install 2022-11-23 21:29:25 +01:00
README.md Update README 2023-08-17 08:56:06 +02:00
docker-compose.yml add Dockerfile and docker-compose config 2022-11-23 21:27:54 +01:00
sample.png Update README picture 2022-11-23 21:29:05 +01:00
shard.lock Update kemalrc and fix dependency version 2022-11-23 21:29:27 +01:00
shard.yml Bump v0.5.9 2023-09-09 22:05:57 +02:00

README.md

Upstream on https://git.sceptique.eu/Sceptique/transfer_more

transfer_more

Fast and lite file upload server (transfer.sh clone).

screenshot

  • It's a simple online file sharing.
  • Files older than 7 days are destroyed (configurable).
  • Recognize shebangs, magic numbers, ...

Installation Build Status

Compatible crystal v1.9.2

From source

make        # build the app / deps
make test   # run unit test
make doc    # build the documentation

From AUR with yay (or yaourt etc.)

yay -S transfer-more

As a systemd service

[Unit]
Description=Tranfer more file sharing
Documentation=https://wiki.archlinux.org/index.php/Transfer-more

[Service]
ExecStart=/usr/share/transfer-more/transfer-more --port 10003 --bind 127.0.0.1
Restart=on-failure
RestartSec=5
Environment="TRANSFER_SSL_ENABLED=true"
WorkingDirectory=/usr/share/transfer-more/

# Hardening
MemoryDenyWriteExecute=true
SystemCallArchitectures=native
CapabilityBoundingSet=
NoNewPrivileges=true
RemoveIPC=true
LockPersonality=true

ProtectControlGroups=true
ProtectKernelTunables=true
ProtectKernelModules=true
ProtectKernelLogs=true
ProtectClock=true
ProtectHostname=true
ProtectProc=noaccess

RestrictRealtime=true
RestrictSUIDSGID=true
RestrictNamespaces=true
RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6

ProtectSystem=full
ProtectHome=true
PrivateDevices=true
PrivateTmp=true

[Install]
WantedBy=default.target

Behind a nginx proxy

You should configure your nginx with /etc/nginx/servers-enabled/transfer-more.conf:

server {
  listen 443 ssl;
  server_name your.sub.domain;
  client_max_body_size 1G;
  proxy_set_header Host              $host;
  proxy_set_header X-Real-IP         $remote_addr;
  proxy_set_header X-Forwarded-For   $proxy_add_x_forwarded_for;
  location / {
      proxy_pass http://localhost:3000;
  }
}

Usage

Run the Server

export TRANSFER_SSL_ENABLED=true    # true if the ssl is enabled, any other string is false
export TRANSFER_BASE_STORAGE="/tmp" # where the files will be kept
export TRANSFER_SECURE_SIZE=4       # how much characters to identify a file
export TRANSFER_STORAGE_DAYS=7      # how much time the files are kept
export TRANSFER_TIME_FORMAT="%y%m%d%H"
export TRANSFER_HOST_PORT="localhost:3000" # in pinciple it is auto solved using the http headers, optional
export TRANSFER_MORE_FOOTER="Something <strong>important</strong> on the bottom" # replace the default footer
export TRANSFER_MORE_TITLE="MyName upload"                                       # replace the default title
./transfer_more
./transfer_more --help
    -b HOST, --bind HOST             Host to bind (defaults to 0.0.0.0)
    -p PORT, --port PORT             Port to listen for connections (defaults to 3000)

Command line client

curl --progress-bar --upload-file file.mp4  http://domain/name.mp4

Inside a Docker container

docker build -t transfer_more . && docker run -p 3000:3000 transfer_more

Or with docker-compose:

docker-compose build && docker-compose up

ShareX template

{
  "Name": "Sceptique",
  "DestinationType": "ImageUploader, TextUploader, FileUploader, URLShortener",
  "RequestURL": "https://up.sceptique.eu/",
  "FileFormName": "file",
  "Headers": {
    "User-Agent": "curl"
  }
}

Development

For now I don't have much plan expanding the feature of it, as it fulfills all my needs.

I will keep updating with each crystal new release.

Contributing

Feel free to propose new feature anyway, we can just put them behind feature flag if it's overkill.

Review your own coding style as possible.

Do not try to include external CI in the upstream, I don't want big centralized service of the GAFAM as possible.

You can either propose a patch in an issue or open a merge request on https://git.sceptique.eu/Sceptique/transfer_more/fork.

You can propose it on github if you want, but git.sceptique.eu accept github OAuth so it's very quick to setup and it's my prefered way.

Contributors

  • Sceptique Arthur Poulet - creator, maintainer