Menu

Tree [6ff5f8] main v0.1.1 /
 History

HTTPS access


File Date Author Commit
 .cert 2024-01-27 none none [b48277] 1) hide hidden files 2) HTTPS instruction and c...
 .github 2024-01-30 none none [04815b] add help to -h argument
 micro_file_server 2024-01-30 none none [6ff5f8] pylint, Bandit, mypy
 tests 2023-06-25 none none [1ae5b7] refactor and add pytest
 .gitignore 2023-06-24 none none [4ab3a4] init
 LICENSE 2023-06-24 none none [4ab3a4] init
 README.md 2024-01-30 none none [e93aad] replace screenshot and now version v0.1.1
 Screenshot.png 2024-01-30 none none [e93aad] replace screenshot and now version v0.1.1
 pyproject.toml 2024-01-30 none none [e93aad] replace screenshot and now version v0.1.1

Read Me

badge

Table of Contents

  1. Description
  2. Features:
  3. Dependencies
  4. Usage
  5. Default settings
  6. Screenshot
  7. Check hash at MS Windows

Description

Create Web server from current directory.

HTTP and HTTPS server that allow to download and upload files.

Micro autoindex and file hosting server with one Flask framework dependence in single file.

Features:

Allow to transfer files between systems easily and safely.

  • ftp-like design
  • ability to upload file
  • protection from folder escaping and injecting
  • size calculation
  • flexible configuration with enironmental variables
  • optional basic file type recognition: text, image, audio, video
  • easy viewing text files by mime type faking.
  • hiding files and directories that starts with '.' dot character.
  • HTTPS/TLS/SSL supported with cert and key files or with dynamic "adhoc" key.
  • all in a single file: .py or .exe.

Dependencies

Python version >= 3.10

Flask >= 2.3.2 pip install flask

Lower version may work as well.

Usage

export FLASK_RUN_HOST=0.0.0.0 FLASK_RUN_PORT=8080
export FLASK_BASE_DIR='/home/user'
python -m micro_file_server

or

python -m micro_file_server --host 0.0.0.0 --port 8080

or

python micro_file_server/__main__.py

or for HTTPS:

python micro_file_server/__main__.py --cert=.cert/cert.pem --key=.cert/key.pem

Built-in development web server is secure enough, but you may install production Web server: pip install gunicorn

gunicorn micro_file_server.__main__:app --bind 0.0.0.0:8080

or for HTTPS:

gunicorn micro_file_server.__main__:app --bind 0.0.0.0:8080 --certfile=.cert/cert.pem --keyfile=.cert/key.pem

Defaults, that you can change:

export FLASK_FILENAME_MAX_LENGTH=40
export FLASK_MIMETYPE_RECOGNITION=True
export FLASK_SMALL_TEXT_DO_NOT_DOWNLOAD=True
export FLASK_SMALL_TEXT_ENCODING="utf-8"
export FLASK_FLASK_UPLOADING_ENABLED=True
export FLASK_HIDE_HIDDEN=True
export FLASK_ALLOW_REWRITE=True

Screenshot

Check hash at MS Windows

certutil -hashfile "micro-file-server.exe" SHA512

Keywords

Filesharing, fileserver, httpserver, microhttp, simplehttp.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.