Skip to main content

The Serverless File Server

Project description

tuxpub

Pipeline Status coverage report PyPI version Code style: black PyPI - License

The Serverless File Server

tuxpub is a python/flask application which provides a file browsing interface to S3, and is designed to be run serverlessly with Zappa.

An example tuxpub deployment can be found at storage.lkft.org.

Configuration

Configuration is handled through environment variables. The following configuration variables are used.

  • S3_BUCKET
    • required: True
    • description: S3 bucket name containing the files to serve. Example: storage.staging.lkft.org
  • S3_REGION
    • required: True
    • description: Region containing the S3 bucket. Example:us-east-1
  • ROOT_INDEX_LISTING
    • required: False
    • description: Defaults to True. Set to False to hide the top level directory/file listing.
  • SITE_TITLE
    • required: False
    • description: Defaults to Tuxpub. Set to anything you like for a global site title.

Run Locally

To run locally, install tuxpub, ensure AWS access is available environmentally, and run:

S3_BUCKET=storage.staging.lkft.org S3_REGION=us-east-1 ROOT_INDEX_LISTING=True FLASK_APP=tuxpub flask run

Run with Zappa

This application is intended to be ran and deployed with Zappa and hosted by AWS API Gateway and Lambda.

To use with Zappa, create an app shim named zappa_init.py:

# When using a flask app factory, this file is required.
# See https://github.com/Miserlou/Zappa/issues/1771
# and https://github.com/Miserlou/Zappa/pull/1775
from tuxpub import create_app
app = create_app()

An example zappa_settings.json file may look like:

{
    "dev": {
        "app_function": "zappa_init.app",
        "aws_region": "us-east-1",
        "project_name": "lkft-tuxpub",
        "runtime": "python3.7",
        "s3_bucket": "zappa-tuxpub",
        "environment_variables": {
          "S3_BUCKET": "storage.dev.lkft.org",
          "S3_REGION": "us-east-1",
          "ROOT_INDEX_LISTING": "True",
        }
    }
}

Features

Export Formats

By default pages are served using HTML. If export=json is appended to a listing URL, a json representation of the page will be provided. This option is ignored when requesting specific files.

Example:

curl http://localhost/path/to/files/?export=json

Root Index listing

By default this application will display the directories and files on the root page. However, a user might not want to allow people to crawl through the S3 bucket. You can set ROOT_INDEX_LISTING=False, which will render a empty root index page.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tuxpub-0.1.7.tar.gz (7.4 kB view hashes)

Uploaded Source

Built Distribution

tuxpub-0.1.7-py3-none-any.whl (9.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page