You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Jeromy Streets 56b37d6c4e Updated go compiler to 1.17.8. 2 years ago
.github Added ability to set minimum TLS version. Updated compiler version. Minor code clean-up. Added funding info. 2 years ago
bin/serve Added command-line utility packages and integrated. 6 years ago
cli Added ability to set minimum TLS version. Updated compiler version. Minor code clean-up. Added funding info. 2 years ago
config Fixed issue where some values may not be getting assigned or validated if a config file was not being used. 2 years ago
handle Added ability to set minimum TLS version. Updated compiler version. Minor code clean-up. Added funding info. 2 years ago
img Working around HTML limits in GitHub markdown. 2 years ago
.dockerignore Creating multi-arch building container and consolidated version to Dockerfiles. 5 years ago
.gitignore Refactored and added unit tests for configuration 6 years ago
Dockerfile Updated go compiler to 1.17.8. 2 years ago
Dockerfile.all Updated go compiler to 1.17.8. 2 years ago
LICENSE Initial commit 7 years ago
README.md Working around HTML limits in GitHub markdown. 2 years ago
go.mod Updated dependencies and version number. Modified Dockerfile to place dependencies in a separate layer to speed development. 5 years ago
go.sum Updated dependencies and version number. Modified Dockerfile to place dependencies in a separate layer to speed development. 5 years ago
update.sh Updated Go version to 1.16.5. 3 years ago

README.md

static-file-server

Introduction

Tiny, simple static file server using environment variables for configuration. Install from any of the following locations:

Configuration

Environment Variables

Default values are shown with the associated environment variable.

# Enables resource access from any domain.
CORS=false

# Enable debugging for troubleshooting. If set to 'true' this prints extra
# information during execution. IMPORTANT NOTE: The configuration summary is
# printed to stdout while logs generated during execution are printed to stderr.
DEBUG=false

# Optional Hostname for binding. Leave black to accept any incoming HTTP request
# on the prescribed port.
HOST=

# If assigned, must be a valid port number.
PORT=8080

# Automatically serve the index file for a given directory (default). If set to
# 'false', URLs ending with a '/' will return 'NOT FOUND'.
SHOW_LISTING=true

# Folder with the content to serve.
FOLDER=/web

# URL path prefix. If 'my.file' is in the root of $FOLDER and $URL_PREFIX is
# '/my/place' then file is retrieved with 'http://$HOST:$PORT/my/place/my.file'.
URL_PREFIX=

# Paths to the TLS certificate and key. If one is set then both must be set. If
# both set then files are served using HTTPS. If neither are set then files are
# served using HTTP.
TLS_CERT=
TLS_KEY=

# If TLS certificates are set then the minimum TLS version may also be set. If
# the value isn't set then the default minimum TLS version is 1.0. Allowed
# values include "TLS10", "TLS11", "TLS12" and "TLS13" for TLS1.0, TLS1.1,
# TLS1.2 and TLS1.3, respectively. The value is not case-sensitive.
TLS_MIN_VERS=

# List of accepted HTTP referrers. Return 403 if HTTP header `Referer` does not
# match prefixes provided in the list.
# Examples:
#   'REFERRERS=http://localhost,https://...,https://another.name'
#   To accept missing referrer header, add a blank entry (start comma):
#   'REFERRERS=,http://localhost,https://another.name'
REFERRERS=

YAML Configuration File

YAML settings are individually overridden by the corresponding environment variable. The following is an example configuration file with defaults. Pass in the path to the configuration file using the command line option ('-c', '-config', '--config').

cors: false
debug: false
folder: /web
host: ""
port: 8080
referrers: []
show-listing: true
tls-cert: ""
tls-key: ""
tls-min-vers: ""
url-prefix: ""

Example configuration with possible alternative values:

debug: true
folder: /var/www
port: 80
referrers:
    - http://localhost
    - https://mydomain.com

Deployment

Without Docker

PORT=8888 FOLDER=. ./serve

Files can then be accessed by going to http://localhost:8888/my/file.txt

With Docker

docker run -d \
    -v /my/folder:/web \
    -p 8080:8080 \
    halverneus/static-file-server:latest

This will serve the folder "/my/folder" over http://localhost:8080/my/file.txt

Any of the variables can also be modified:

docker run -d \
    -v /home/me/dev/source:/content/html \
    -v /home/me/dev/files:/content/more/files \
    -e FOLDER=/content \
    -p 8080:8080 \
    halverneus/static-file-server:latest

Getting Help

./serve help
# OR
docker run -it halverneus/static-file-server:latest help